Commit 95dcf977 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander Trofimov

ASCOfficeUtilsLib->OfficeUtils; создаем файл changes.zip в x2t а не FileConverterService2;

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64206 954022d7-b5bf-4e40-9824-e11837661b57
parent 8717b5bf
...@@ -19,7 +19,7 @@ namespace NSSystemPath ...@@ -19,7 +19,7 @@ namespace NSSystemPath
#if defined(_WIN32) || defined (_WIN64) #if defined(_WIN32) || defined (_WIN64)
TCHAR tDrive[256]; TCHAR tDrive[256];
TCHAR tFolder[256]; TCHAR tFolder[256];
_tsplitpath( strFileName.c_str(), tDrive, tFolder, NULL, NULL ); _wsplitpath( strFileName.c_str(), tDrive, tFolder, NULL, NULL );
sRes.append(tDrive); sRes.append(tDrive);
sRes.append(tFolder); sRes.append(tFolder);
#elif __linux__ || MAC #elif __linux__ || MAC
...@@ -38,7 +38,7 @@ namespace NSSystemPath ...@@ -38,7 +38,7 @@ namespace NSSystemPath
#if defined(_WIN32) || defined (_WIN64) #if defined(_WIN32) || defined (_WIN64)
TCHAR tFilename[256]; TCHAR tFilename[256];
TCHAR tExt[256]; TCHAR tExt[256];
_tsplitpath( strFileName.c_str(), NULL, NULL, tFilename, tExt ); _wsplitpath( strFileName.c_str(), NULL, NULL, tFilename, tExt );
sRes.append(tFilename); sRes.append(tFilename);
sRes.append(tExt); sRes.append(tExt);
return sRes; return sRes;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment