From a80d9ac67dc13dbc755a58cbb00a7d2eb166ecb1 Mon Sep 17 00:00:00 2001 From: "Sergey.Konovalov" Date: Mon, 25 May 2015 07:50:32 +0000 Subject: [PATCH] DeleteFileW->DeleteFile git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62733 954022d7-b5bf-4e40-9824-e11837661b57 --- ASCOfficePPTXFile/Editor/BinaryFileReaderWriter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ASCOfficePPTXFile/Editor/BinaryFileReaderWriter.cpp b/ASCOfficePPTXFile/Editor/BinaryFileReaderWriter.cpp index f268c4d3d6..2621d637e7 100644 --- a/ASCOfficePPTXFile/Editor/BinaryFileReaderWriter.cpp +++ b/ASCOfficePPTXFile/Editor/BinaryFileReaderWriter.cpp @@ -326,12 +326,12 @@ namespace NSBinPptxRW if (!strImage.IsEmpty()) { oImageManagerInfo = GenerateImageExec(strImage, strExts, strOleImage, strOleImageProperty); - CDirectory::DeleteFileW(strImage); + CDirectory::DeleteFile(strImage); } if (!strOleImage.IsEmpty()) - CDirectory::DeleteFileW(strOleImage); + CDirectory::DeleteFile(strOleImage); if (!strOleImageProperty.IsEmpty()) - CDirectory::DeleteFileW(strOleImageProperty); + CDirectory::DeleteFile(strOleImageProperty); m_mapImages[strUrl] = oImageManagerInfo; return oImageManagerInfo;