diff options
author | saturneric <[email protected]> | 2025-04-29 13:19:06 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-29 13:19:06 +0000 |
commit | 6106b66c879ecbdf5dec6dd8b63db383efca0844 (patch) | |
tree | 19327805289c783ec2a07449746170d614082e56 /src/ui/GpgFrontendApplication.cpp | |
parent | fix: filename of export key is not correct (diff) | |
download | GpgFrontend-6106b66c879ecbdf5dec6dd8b63db383efca0844.tar.gz GpgFrontend-6106b66c879ecbdf5dec6dd8b63db383efca0844.zip |
fix: add to favorite function not works properly
Diffstat (limited to 'src/ui/GpgFrontendApplication.cpp')
-rw-r--r-- | src/ui/GpgFrontendApplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/GpgFrontendApplication.cpp b/src/ui/GpgFrontendApplication.cpp index 271c8e57..5f896fd5 100644 --- a/src/ui/GpgFrontendApplication.cpp +++ b/src/ui/GpgFrontendApplication.cpp @@ -72,7 +72,7 @@ bool GpgFrontendApplication::notify(QObject *receiver, QEvent *event) { try { return QApplication::notify(receiver, event); } catch (const std::exception &ex) { - FLOG_W("exception was caught in notify: {}", ex.what()); + FLOG_W("exception was caught in notify: %s", ex.what()); QMessageBox::information( nullptr, tr("Standard Exception Thrown"), tr("Oops, an standard exception was thrown " |