diff options
Diffstat (limited to 'krdc')
-rw-r--r-- | krdc/rdp/krdpview.cpp | 2 | ||||
-rw-r--r-- | krdc/vnc/kvncview.cpp | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/krdc/rdp/krdpview.cpp b/krdc/rdp/krdpview.cpp index 5188489b..4494fcfd 100644 --- a/krdc/rdp/krdpview.cpp +++ b/krdc/rdp/krdpview.cpp @@ -275,7 +275,7 @@ bool KRdpView::start() if ( m_password.isEmpty() ) { //There must not be an existing entry. Let's make one. - TQCString newPassword; + TQString newPassword; if (KPasswordDialog::getPassword(newPassword, i18n("Please enter the password.")) == KPasswordDialog::Accepted) { m_password = newPassword; wallet->writePassword(m_host, m_password); diff --git a/krdc/vnc/kvncview.cpp b/krdc/vnc/kvncview.cpp index b7ca3685..d4f71cee 100644 --- a/krdc/vnc/kvncview.cpp +++ b/krdc/vnc/kvncview.cpp @@ -59,7 +59,7 @@ static KVncView *kvncview; //Passwords and TDEWallet data extern TDEWallet::Wallet *wallet; bool useTDEWallet = false; -static TQCString password; +static TQString password; static TQMutex passwordLock; static TQWaitCondition passwordWaiter; @@ -88,7 +88,7 @@ KVncView::KVncView(TQWidget *parent, m_cursorState(dotCursorState) { kvncview = this; - password = _password.latin1(); + password = _password; dpy = tqt_xdisplay(); setFixedSize(16,16); setFocusPolicy(TQ_StrongFocus); @@ -417,7 +417,7 @@ void KVncView::customEvent(TQCustomEvent *e) emit showingPasswordDialog(true); if (KPasswordDialog::getPassword(password, i18n("Access to the system requires a password.")) != KPasswordDialog::Accepted) - password = TQCString(); + password = TQString(); emit showingPasswordDialog(false); @@ -450,7 +450,7 @@ void KVncView::customEvent(TQCustomEvent *e) wallet->setFolder(krdc_folder); TQString newPass; if ( wallet->hasEntry(kvncview->host()) && !wallet->readPassword(kvncview->host(), newPass) ) { - password=newPass.latin1(); + password=newPass; } } } @@ -792,7 +792,7 @@ int getPassword(char * &passwd) { //Process the password if we got it, clear it if we didn't if (retV) { - passwd = strdup((const char*)password); + passwd = strdup(password.utf8()); } //Pack up and go home |