From 67057d83f5bd2ea6238870ed62178cff45a1443f Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Wed, 13 Mar 2024 13:15:41 +0100 Subject: Qt: Fix windows build of new jobs -- See git log for changes. --- lang/qt/src/qgpgmeencryptjob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lang/qt/src/qgpgmeencryptjob.cpp') diff --git a/lang/qt/src/qgpgmeencryptjob.cpp b/lang/qt/src/qgpgmeencryptjob.cpp index 213c88c7..f8c71f6b 100644 --- a/lang/qt/src/qgpgmeencryptjob.cpp +++ b/lang/qt/src/qgpgmeencryptjob.cpp @@ -172,7 +172,7 @@ static QGpgMEEncryptJob::result_type encrypt_to_filename(Context *ctx, { Data indata; #ifdef Q_OS_WIN - indata.setFileName(inputFilePath().toUtf8().constData()); + indata.setFileName(inputFilePath.toUtf8().constData()); #else indata.setFileName(QFile::encodeName(inputFilePath).constData()); #endif -- cgit v1.2.3