Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/UI/GUI/UpdateGUI.cpp')
-rwxr-xr-x7zip/UI/GUI/UpdateGUI.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/7zip/UI/GUI/UpdateGUI.cpp b/7zip/UI/GUI/UpdateGUI.cpp
index 5becefef..a3f6b449 100755
--- a/7zip/UI/GUI/UpdateGUI.cpp
+++ b/7zip/UI/GUI/UpdateGUI.cpp
@@ -30,7 +30,7 @@ using namespace NWindows;
using namespace NFile;
static const wchar_t *kIncorrectOutDir = L"Incorrect output directory path";
-static const wchar_t *kDefaultSfxModule = L"7zC.sfx";
+static const wchar_t *kDefaultSfxModule = L"7z.sfx";
static const wchar_t *kSFXExtension = L"exe";
struct CThreadUpdating
@@ -350,8 +350,7 @@ HRESULT UpdateGUI(
CThread thread;
if (!thread.Create(CThreadUpdating::MyThreadFunction, &tu))
throw 271824;
- const UString title = LangLoadStringW(IDS_PROGRESS_COMPRESSING, 0x02000DC0);
- tu.UpdateCallbackGUI->StartProgressDialog(title);
+ tu.UpdateCallbackGUI->StartProgressDialog(LangString(IDS_PROGRESS_COMPRESSING, 0x02000DC0));
return tu.Result;
}