This commit is contained in:
Igor Pavlov
2015-01-03 00:00:00 +00:00
committed by Kornel Lesiński
parent 7e021179cd
commit 0713a3ab80
153 changed files with 2744 additions and 1485 deletions

View File

@@ -260,7 +260,7 @@ static HRESULT FsCopyFile(
&writeAskResult));
if (IntToBool(writeAskResult))
{
FString destPathNew = us2fs(destPathResult);
FString destPathNew = us2fs((const wchar_t *)(BSTR)destPathResult);
RINOK(callback->SetCurrentFilePath(fs2us(srcPath)));
if (!FsCopyFile(srcPath, destPathNew, callback, completedSize))
{
@@ -351,7 +351,7 @@ static HRESULT FsMoveFile(
&writeAskResult));
if (IntToBool(writeAskResult))
{
FString destPathNew = us2fs(destPathResult);
FString destPathNew = us2fs((const wchar_t *)(BSTR)destPathResult);
RINOK(callback->SetCurrentFilePath(fs2us(srcPath)));
if (!FsMoveFile(srcPath, destPathNew, callback, completedSize))
{