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

@@ -533,7 +533,7 @@ static const char *ParseMapWithPaths(
wchar_t c = p[i];
if (c == 0)
{
// MessageBoxW(0, name, L"7-Zip", 0);
// MessageBoxW(0, name, L"7-Zip ZS", 0);
AddNameToCensor(censor, name, include, commonRecursedType, wildcardMatching);
name.Empty();
}

View File

@@ -53,7 +53,7 @@ UString GetQuotedString(const UString &s)
static void ErrorMessage(LPCWSTR message)
{
MessageBoxW(g_HWND, message, L"7-Zip", MB_ICONERROR | MB_OK);
MessageBoxW(g_HWND, message, L"7-Zip ZS", MB_ICONERROR | MB_OK);
}
static void ErrorMessageHRESULT(HRESULT res, LPCWSTR s = NULL)

View File

@@ -67,7 +67,7 @@ UString GetQuotedString(const UString &s)
static void ErrorMessage(LPCWSTR message)
{
MessageBoxW(g_HWND, message, L"7-Zip", MB_ICONERROR);
MessageBoxW(g_HWND, message, L"7-Zip ZS", MB_ICONERROR);
}
static void ErrorMessageHRESULT(HRESULT res)

View File

@@ -16,7 +16,7 @@ using namespace NRegistry;
static NSynchronization::CCriticalSection g_CS;
#define CS_LOCK NSynchronization::CCriticalSectionLock lock(g_CS);
static LPCTSTR const kCuPrefix = TEXT("Software") TEXT(STRING_PATH_SEPARATOR) TEXT("7-Zip") TEXT(STRING_PATH_SEPARATOR);
static LPCTSTR const kCuPrefix = TEXT("Software") TEXT(STRING_PATH_SEPARATOR) TEXT("7-Zip-ZStandard") TEXT(STRING_PATH_SEPARATOR);
static CSysString GetKeyPath(LPCTSTR path) { return kCuPrefix + (CSysString)path; }