mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 19:14:56 -06:00
15.05
This commit is contained in:
committed by
Kornel Lesiński
parent
0713a3ab80
commit
54490d51d5
@@ -143,7 +143,7 @@ bool CExtractDialog::OnInit()
|
||||
GetText(s);
|
||||
if (!ArcPath.IsEmpty())
|
||||
{
|
||||
s += L" : ";
|
||||
s.AddAscii(" : ");
|
||||
s += ArcPath;
|
||||
}
|
||||
SetText(s);
|
||||
@@ -289,7 +289,7 @@ void CExtractDialog::OnButtonSetPath()
|
||||
void AddUniqueString(UStringVector &list, const UString &s)
|
||||
{
|
||||
FOR_VECTOR (i, list)
|
||||
if (s.IsEqualToNoCase(list[i]))
|
||||
if (s.IsEqualTo_NoCase(list[i]))
|
||||
return;
|
||||
list.Add(s);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user