svn path=/trunk/KDE/kdebase/kdepasswd/; revision=618913
This commit is contained in:
Olivier Goffart 2007-01-02 13:27:05 +00:00
parent 080f643f6b
commit 72e354877c

View file

@ -70,7 +70,7 @@ int KDEpasswd1Dialog::getPassword(QByteArray &password)
KDEpasswd1Dialog *dlg = new KDEpasswd1Dialog();
int res = dlg->exec();
if (res == Accepted)
password = dlg->password();
password = dlg->password().local8Bit();
delete dlg;
return res;
}