diff options
-rw-r--r-- | verifydetailsdialog.cpp | 2 | ||||
-rw-r--r-- | verifynotification.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/verifydetailsdialog.cpp b/verifydetailsdialog.cpp index 587e312..52c0b9b 100644 --- a/verifydetailsdialog.cpp +++ b/verifydetailsdialog.cpp @@ -48,7 +48,7 @@ void VerifyDetailsDialog::refresh() mainLayout->addWidget(mVbox); // Get signature information of current text - QByteArray text = mTextpage->toPlainText().toUtf8(); // TODO: toUtf8() here? + QByteArray text = mTextpage->toPlainText().toUtf8(); mCtx->preventNoDataErr(&text); gpgme_signature_t sign = mCtx->verify(text); diff --git a/verifynotification.cpp b/verifynotification.cpp index 2ba4d77..b65475d 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().toUtf8(); // TODO: toUtf8() here? + QByteArray text = mTextpage->toPlainText().toUtf8(); mCtx->preventNoDataErr(&text); int textIsSigned = mCtx->textIsSigned(text); |