mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 17:15:00 -06:00
15.05
This commit is contained in:
committed by
Kornel Lesiński
parent
0713a3ab80
commit
54490d51d5
@@ -115,6 +115,11 @@ UString LangString(UInt32 langID)
|
||||
return MyLoadString(langID);
|
||||
}
|
||||
|
||||
void AddLangString(UString &s, UInt32 langID)
|
||||
{
|
||||
s += LangString(langID);
|
||||
}
|
||||
|
||||
void LangString(UInt32 langID, UString &dest)
|
||||
{
|
||||
const wchar_t *s = g_Lang.Get(langID);
|
||||
@@ -166,7 +171,7 @@ static void FindShortNames(UInt32 primeLang, UStringVector &names)
|
||||
p++;
|
||||
}
|
||||
while (p != p2)
|
||||
s += (wchar_t)*p++;
|
||||
s += (wchar_t)(Byte)*p++;
|
||||
names.Add(s);
|
||||
}
|
||||
p = p2 + 1;
|
||||
|
||||
Reference in New Issue
Block a user