mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-16 21:12:31 -04:00
Fix for ticket #129
Utf8 chars don't show up for peer names, in private chat and file list. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4576 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
4f1d1b8dc7
commit
185307ad37
3 changed files with 3 additions and 3 deletions
|
@ -140,7 +140,7 @@ bool NotifyQt::askForPassword(const std::string& key_details, bool prev_is_bad,
|
|||
RsAutoUpdatePage::unlockAllEvents() ;
|
||||
|
||||
if (ret == QDialog::Accepted) {
|
||||
password = dialog.textValue().toStdString();
|
||||
password = dialog.textValue().toUtf8().constData();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue