mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
kio: correct logic for hiding user name in KIO::SlaveBase::openPasswordDialog()
that nasty operator not.. Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
020f82e5d7
commit
b5b1741ca5
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ bool SlaveBase::openPasswordDialog(AuthInfo& info, const QString &errorMsg)
|
|||
dialogFlags |= KPasswordDialog::ShowAnonymousLoginCheckBox;
|
||||
}
|
||||
|
||||
if (!dlgInfo.hideUserName) {
|
||||
if (dlgInfo.hideUserName == false) {
|
||||
dialogFlags |= KPasswordDialog::ShowUsernameLine;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue