This commit is contained in:
Igor Pavlov
2016-05-20 00:00:00 +00:00
committed by Kornel Lesiński
parent 66ac98bb02
commit bec3b479dc
88 changed files with 972 additions and 753 deletions

View File

@@ -189,9 +189,9 @@ void CPanel::Properties()
}
else
{
for (UInt32 i = 0; i < dataSize; i++)
for (UInt32 k = 0; k < dataSize; k++)
{
Byte b = ((const Byte *)data)[i];
Byte b = ((const Byte *)data)[k];
s += GetHex((Byte)((b >> 4) & 0xF));
s += GetHex((Byte)(b & 0xF));
}
@@ -245,8 +245,6 @@ void CPanel::Properties()
}
}
CMyComPtr<IGetFolderArcProps> getFolderArcProps;
_folder.QueryInterface(IID_IGetFolderArcProps, &getFolderArcProps);
if (getFolderArcProps)
{
CMyComPtr<IFolderArcProps> getProps;