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
@@ -54,14 +54,17 @@ void SplitString(const UString &srcString, UStringVector &destStrings)
|
||||
destStrings.Add(s);
|
||||
}
|
||||
|
||||
/*
|
||||
UString JoinStrings(const UStringVector &srcStrings)
|
||||
{
|
||||
|
||||
UString s;
|
||||
FOR_VECTOR (i, srcStrings)
|
||||
{
|
||||
if (i != 0)
|
||||
s += L' ';
|
||||
s.Add_Space();
|
||||
s += srcStrings[i];
|
||||
}
|
||||
return s;
|
||||
}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user