From 4be6ce6ab2742610dd4d42d5f1e6e174e6e5b810 Mon Sep 17 00:00:00 2001 From: nils Date: Tue, 7 Jan 2014 22:54:47 +0000 Subject: 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 --- keydetailsdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3