mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 12:07:03 -06:00
Update to 7-Zip 17.00 Beta
This commit is contained in:
@@ -176,17 +176,13 @@ int CALLBACK CompareItems2(LPARAM lParam1, LPARAM lParam2, LPARAM lpData)
|
||||
panel->_folder->GetProperty((UInt32)lParam1, propID, &prop1);
|
||||
panel->_folder->GetProperty((UInt32)lParam2, propID, &prop2);
|
||||
if (prop1.vt != prop2.vt)
|
||||
{
|
||||
return MyCompare(prop1.vt, prop2.vt);
|
||||
}
|
||||
if (prop1.vt == VT_BSTR)
|
||||
{
|
||||
return _wcsicmp(prop1.bstrVal, prop2.bstrVal);
|
||||
}
|
||||
return MyStringCompareNoCase(prop1.bstrVal, prop2.bstrVal);
|
||||
return prop1.Compare(prop2);
|
||||
// return 0;
|
||||
}
|
||||
|
||||
|
||||
int CALLBACK CompareItems(LPARAM lParam1, LPARAM lParam2, LPARAM lpData)
|
||||
{
|
||||
if (lpData == 0) return 0;
|
||||
|
||||
Reference in New Issue
Block a user