diff options
author | saturneric <[email protected]> | 2025-04-27 15:01:04 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-27 15:01:04 +0000 |
commit | f8167d7602ac3d25007eb34f1a8237cf81c2aad3 (patch) | |
tree | 2aa1142f0a562b48d8de51d3c3fb0b4a28f044ad /src/ui/dialog/keypair_details/KeyPairOperaTab.cpp | |
parent | fix: include winsock2.h before windows.h (diff) | |
download | GpgFrontend-f8167d7602ac3d25007eb34f1a8237cf81c2aad3.tar.gz GpgFrontend-f8167d7602ac3d25007eb34f1a8237cf81c2aad3.zip |
fix: filename of export key is not correctdevelop
Diffstat (limited to '')
-rw-r--r-- | src/ui/dialog/keypair_details/KeyPairOperaTab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp b/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp index a06ec835..d52794aa 100644 --- a/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp +++ b/src/ui/dialog/keypair_details/KeyPairOperaTab.cpp @@ -237,7 +237,7 @@ void KeyPairOperaTab::slot_export_key(bool secret, bool ascii, bool shortest, #if defined(_WIN32) || defined(WIN32) auto file_name = QString("%1[%2](%3)_%4.asc"); #else - auto file_name = QString("%1<%2[(%3)_%4.asc"); + auto file_name = QString("%1<%2>(%3)_%4.asc"); #endif file_name = |