Commit 86c1820e authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander Trofimov

Изменен тип, чтобы не было лишнего приведения типов.

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62383 954022d7-b5bf-4e40-9824-e11837661b57
parent de23437b
...@@ -794,7 +794,7 @@ namespace NSFile ...@@ -794,7 +794,7 @@ namespace NSFile
std::wstring sRet(pBuffer); std::wstring sRet(pBuffer);
int nSeparatorPos = sRet.find_last_of(wchar_t('/')); size_t nSeparatorPos = sRet.find_last_of(wchar_t('/'));
if (std::wstring::npos == nSeparatorPos) if (std::wstring::npos == nSeparatorPos)
{ {
nSeparatorPos = sRet.find_last_of(wchar_t('\\')); nSeparatorPos = sRet.find_last_of(wchar_t('\\'));
......
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