aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/qgpgmeverifydetachedjob.cpp
diff options
context:
space:
mode:
authorAndre Heinecke <[email protected]>2024-03-13 12:15:41 +0000
committerAndre Heinecke <[email protected]>2024-03-13 12:15:41 +0000
commit67057d83f5bd2ea6238870ed62178cff45a1443f (patch)
treeb2c774ddf6993330610416d34c8da2996a08862c /lang/qt/src/qgpgmeverifydetachedjob.cpp
parentcore: Check STATUS_FAILURE in import operations. (diff)
downloadgpgme-67057d83f5bd2ea6238870ed62178cff45a1443f.tar.gz
gpgme-67057d83f5bd2ea6238870ed62178cff45a1443f.zip
Qt: Fix windows build of new jobs
-- See git log for changes.
Diffstat (limited to '')
-rw-r--r--lang/qt/src/qgpgmeverifydetachedjob.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/qt/src/qgpgmeverifydetachedjob.cpp b/lang/qt/src/qgpgmeverifydetachedjob.cpp
index 0a58f59e..467b94f3 100644
--- a/lang/qt/src/qgpgmeverifydetachedjob.cpp
+++ b/lang/qt/src/qgpgmeverifydetachedjob.cpp
@@ -135,14 +135,14 @@ static QGpgMEVerifyDetachedJob::result_type verify_from_filename(Context *ctx,
{
Data signatureData;
#ifdef Q_OS_WIN
- signatureData.setFileName(signatureFilePath().toUtf8().constData());
+ signatureData.setFileName(signatureFilePath.toUtf8().constData());
#else
signatureData.setFileName(QFile::encodeName(signatureFilePath).constData());
#endif
Data signedData;
#ifdef Q_OS_WIN
- signedData.setFileName(signedFilePath().toUtf8().constData());
+ signedData.setFileName(signedFilePath.toUtf8().constData());
#else
signedData.setFileName(QFile::encodeName(signedFilePath).constData());
#endif