mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
change Registry Usage nearly complete to 7-Zip-ZStandard key
This commit is contained in:
@@ -181,7 +181,7 @@ public:
|
||||
}
|
||||
void MessageBoxError(LPCWSTR message)
|
||||
{
|
||||
MessageBoxW(*this, message, L"7-Zip", MB_ICONERROR);
|
||||
MessageBoxW(*this, message, L"7-Zip ZS", MB_ICONERROR);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -828,7 +828,7 @@ void CCompressDialog::OnOK()
|
||||
wchar_t s[32];
|
||||
ConvertUInt64ToString(volumeSize, s);
|
||||
if (::MessageBoxW(*this, MyFormatNew(IDS_SPLIT_CONFIRM, s),
|
||||
L"7-Zip", MB_YESNOCANCEL | MB_ICONQUESTION) != IDYES)
|
||||
L"7-Zip ZS", MB_YESNOCANCEL | MB_ICONQUESTION) != IDYES)
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ bool g_LVN_ITEMACTIVATE_Support = true;
|
||||
|
||||
static void ErrorMessage(LPCWSTR message)
|
||||
{
|
||||
MessageBoxW(NULL, message, L"7-Zip", MB_ICONERROR | MB_OK);
|
||||
MessageBoxW(NULL, message, L"7-Zip ZS", MB_ICONERROR | MB_OK);
|
||||
}
|
||||
|
||||
static void ErrorMessage(const char *s)
|
||||
@@ -116,7 +116,7 @@ static int Main2()
|
||||
#endif
|
||||
if (commandStrings.Size() == 0)
|
||||
{
|
||||
MessageBoxW(0, L"Specify command", L"7-Zip", 0);
|
||||
MessageBoxW(0, L"Specify command", L"7-Zip ZS", 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -272,7 +272,7 @@ HRESULT HashCalcGUI(
|
||||
|
||||
const UString title = LangString(IDS_CHECKSUM_CALCULATING);
|
||||
|
||||
t.ProgressDialog.MainTitle = "7-Zip"; // LangString(IDS_APP_TITLE);
|
||||
t.ProgressDialog.MainTitle = "7-Zip ZS"; // LangString(IDS_APP_TITLE);
|
||||
t.ProgressDialog.MainAddTitle = title;
|
||||
t.ProgressDialog.MainAddTitle.Add_Space();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user