diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2014-01-07 22:54:47 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2014-01-07 22:54:47 +0000 |
commit | 4be6ce6ab2742610dd4d42d5f1e6e174e6e5b810 (patch) | |
tree | a2ae5cfbc74e0e41641329f807823e7f38d2ffe9 | |
parent | moved branch 0.3.2-1 to 0.3.3 (diff) | |
download | gpg4usb-4be6ce6ab2742610dd4d42d5f1e6e174e6e5b810.tar.gz gpg4usb-4be6ce6ab2742610dd4d42d5f1e6e174e6e5b810.zip |
in keydetailsdialog: corrected display of the uid in additional uidlist
git-svn-id: http://cpunk.de/svn/src/gpg4usb/branches/0.3.3@1086 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | keydetailsdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keydetailsdialog.cpp b/keydetailsdialog.cpp index 5a66122..b16a2e4 100644 --- a/keydetailsdialog.cpp +++ b/keydetailsdialog.cpp @@ -126,7 +126,7 @@ KeyDetailsDialog::KeyDetailsDialog(GpgME::GpgContext* ctx, gpgme_key_t key, QWid if (addUserIds !=NULL) { QVBoxLayout *vboxUID = new QVBoxLayout(); while (addUserIds != NULL){ - addUserIdsVarLabel = new QLabel(addUserIds->name+ QString(" <")+addUserIds->email+">"); + addUserIdsVarLabel = new QLabel(QString::fromUtf8(addUserIds->name)+ QString(" <")+addUserIds->email+">"); addUserIdsVarLabel->setTextInteractionFlags(Qt::TextSelectableByMouse); vboxUID->addWidget(addUserIdsVarLabel); addUserIds=addUserIds->next; |