Commit 75b8bade authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander Trofimov

(1.0.0.102) - XlsxSerializerCom.dll

Ошибка при парсинге ссылок на ячейку (parseRef). nRow -> nCol

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@54114 954022d7-b5bf-4e40-9824-e11837661b57
parent cc6d872e
......@@ -377,7 +377,7 @@ namespace OOX
CString sDig = sRef.Right(nLegnth - nIndex);
for(int i = 0, length = sAdd.GetLength(); i < length; ++i)
{
nCol = nRow * 26 + sAdd[i] - 'A' + 1;
nCol = nCol * 26 + sAdd[i] - 'A' + 1;
}
nRow = _wtoi(sDig);
bRes = true;
......
......@@ -2,6 +2,6 @@
//1
//0
//0
//101
#define INTVER 1,0,0,101
#define STRVER "1,0,0,101\0"
//102
#define INTVER 1,0,0,102
#define STRVER "1,0,0,102\0"
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