diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-06 19:33:52 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-06 19:33:52 +0300 |
commit | 3514cf14b90ef174ce957723f1fb248670eec8a7 (patch) | |
tree | 16eadcfeb7e5ac11a554ebd46ec0e89072098215 /plugins/New_GPG/src/ui.cpp | |
parent | f8e5d552141e3c35fc156145c9634cf16ba33578 (diff) |
fixes #3850 (NewGPG: строки не попадают в ленгпак)
Diffstat (limited to 'plugins/New_GPG/src/ui.cpp')
-rw-r--r-- | plugins/New_GPG/src/ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/New_GPG/src/ui.cpp b/plugins/New_GPG/src/ui.cpp index 2118ce723a..0677b4eb5a 100644 --- a/plugins/New_GPG/src/ui.cpp +++ b/plugins/New_GPG/src/ui.cpp @@ -560,7 +560,7 @@ public: if (i == -1)
return;
- ptrW p(GetFilePath(L"Choose file to export key", L"*", L"Any file", true));
+ ptrW p(GetFilePath(LPGENW("Choose file to export key"), L"*", LPGENW("Any file"), true));
if (!p || !p[0])
return;
|