diff options
author | saturneric <[email protected]> | 2025-04-18 17:35:45 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-18 17:35:45 +0000 |
commit | d115562e6cb231356ef87a2ab86f4da1159a9e41 (patch) | |
tree | c079dd49cf0a991b17cb96ad4f05d558567908c0 /src/ui/UserInterfaceUtils.cpp | |
parent | feat: add more basic env checks at init (diff) | |
download | GpgFrontend-d115562e6cb231356ef87a2ab86f4da1159a9e41.tar.gz GpgFrontend-d115562e6cb231356ef87a2ab86f4da1159a9e41.zip |
fix: issues found on macos
Diffstat (limited to 'src/ui/UserInterfaceUtils.cpp')
-rw-r--r-- | src/ui/UserInterfaceUtils.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ui/UserInterfaceUtils.cpp b/src/ui/UserInterfaceUtils.cpp index b5747b9f..dbc3f7e3 100644 --- a/src/ui/UserInterfaceUtils.cpp +++ b/src/ui/UserInterfaceUtils.cpp @@ -169,10 +169,9 @@ void CommonUtils::RaiseMessageBox(QWidget *parent, GpgError err) { void CommonUtils::RaiseMessageBoxNotSupported(QWidget *parent) { QMessageBox::warning( - parent, QObject::tr("Operation Not Supported"), - QObject::tr( - "The current GnuPG version is too low and does not support this " - "operation. Please upgrade your GnuPG version to continue.")); + parent, tr("Operation Not Supported"), + tr("The current GnuPG version is too low and does not support this " + "operation. Please upgrade your GnuPG version to continue.")); } void CommonUtils::RaiseFailureMessageBox(QWidget *parent, GpgError err, |