change Registry Usage nearly complete to 7-Zip-ZStandard key

This commit is contained in:
Tino Reichardt
2017-05-18 11:36:45 +02:00
parent 95e71d900b
commit b401d31c41
11 changed files with 12 additions and 12 deletions

View File

@@ -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);
}
};

View File

@@ -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;
}
}

View File

@@ -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;
}

View File

@@ -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();