diff options
| author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-03-01 20:36:48 +0100 |
|---|---|---|
| committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-03-01 20:36:48 +0100 |
| commit | b57b5935b14dc40e5cd1d51de833c13dec37dbc8 (patch) | |
| tree | fb8775f6b239dde8ccfaee60c00cd85b4bc58885 /verifynotification.cpp | |
| parent | updated brasilian translation (diff) | |
| download | gpg4usb-b57b5935b14dc40e5cd1d51de833c13dec37dbc8.tar.gz gpg4usb-b57b5935b14dc40e5cd1d51de833c13dec37dbc8.zip | |
fix sign and verify bug with utf8, which was already fixed in 0.3.1.1
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@820 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'verifynotification.cpp')
| -rw-r--r-- | verifynotification.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/verifynotification.cpp b/verifynotification.cpp index 284d511..ce5979c 100644 --- a/verifynotification.cpp +++ b/verifynotification.cpp @@ -94,7 +94,7 @@ bool VerifyNotification::refresh() { verify_label_status verifyStatus=VERIFY_ERROR_OK; - QByteArray text = mTextpage->toPlainText().toAscii(); // TODO: toUtf8() here? + QByteArray text = mTextpage->toPlainText().toUtf8(); mCtx->preventNoDataErr(&text); int textIsSigned = mCtx->textIsSigned(text); |
