diff options
Diffstat (limited to 'kshowmail/serverdialog.cpp')
-rw-r--r-- | kshowmail/serverdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kshowmail/serverdialog.cpp b/kshowmail/serverdialog.cpp index 4c051ad..17b6496 100644 --- a/kshowmail/serverdialog.cpp +++ b/kshowmail/serverdialog.cpp @@ -217,7 +217,7 @@ void ServerDialog::slotOk( ) //will return an empty string. If the user has typed in a new password, KPasswordEdit::password() //will return the correct password TQString pass; - if( txtPassword->password() == "" || txtPassword->password() == TQString::null ) + if( txtPassword->password() == TQString("") || txtPassword->password() == TQString::null ) pass = txtPassword->text(); else pass = txtPassword->password(); |