refactor: unglob std::wstring

This commit is contained in:
Tropical
2026-03-06 11:50:22 -06:00
parent 41db813a6d
commit cdc08700e4
581 changed files with 2156 additions and 2154 deletions

View File

@@ -15,8 +15,8 @@ class StringTable
private:
bool isStatic;
std::unordered_map<wstring, wstring> m_stringsMap;
vector<wstring> m_stringsVec;
std::unordered_map<std::wstring, std::wstring> m_stringsMap;
vector<std::wstring> m_stringsVec;
byteArray src;
@@ -64,7 +64,7 @@ public:
void getData(PBYTE *ppbData, UINT *pdwSize);
LPCWSTR getString(const wstring &id);
LPCWSTR getString(const std::wstring &id);
LPCWSTR getString(int id);
//static LPCWSTR m_wchLocaleCode[LOCALE_COUNT];
@@ -72,7 +72,7 @@ public:
private:
//wstring getLangId(DWORD dwLanguage=0);
//std::wstring getLangId(DWORD dwLanguage=0);
};