Commit 385a24ef authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander Trofimov

(1.0.0.105): XlsxSerializerCom

Пустые ячейки не пишем

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@54342 954022d7-b5bf-4e40-9824-e11837661b57
parent da36c023
......@@ -11,6 +11,9 @@ namespace CSVReader
sText.Delete(nIndex);
oDeleteChars.pop();
}
//
if (0 == sText.GetLength())
return;
OOX::Spreadsheet::CCell *pCell = new OOX::Spreadsheet::CCell();
pCell->m_oType.Init();
......@@ -29,7 +32,6 @@ namespace CSVReader
else
{
//
pCell->m_oType->SetValue(SimpleTypes::Spreadsheet::celltypeNumber);
pCell->m_oValue.Init();
pCell->m_oValue->m_sText = sText;
}
......
......@@ -2,6 +2,6 @@
//1
//0
//0
//104
#define INTVER 1,0,0,104
#define STRVER "1,0,0,104\0"
//105
#define INTVER 1,0,0,105
#define STRVER "1,0,0,105\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