Commit 96f2bac5 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander Trofimov

(1.0.0.118): XlsxSerializerCom

xSplit и ySplit пишем для read1 + собрал сборку без последних правок в common с цветами.

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@55998 954022d7-b5bf-4e40-9824-e11837661b57
parent 14ba884e
...@@ -1872,16 +1872,16 @@ namespace BinXlsxRW { ...@@ -1872,16 +1872,16 @@ namespace BinXlsxRW {
//XSplit //XSplit
if (oPane.m_oXSplit.IsInit()) if (oPane.m_oXSplit.IsInit())
{ {
m_oBcw.m_oStream.WriteByte(c_oSer_Pane::XSplit); nCurPos = m_oBcw.WriteItemStart(c_oSer_Pane::XSplit);
m_oBcw.m_oStream.WriteByte(c_oSerPropLenType::Double);
m_oBcw.m_oStream.WriteDouble(oPane.m_oXSplit->GetValue()); m_oBcw.m_oStream.WriteDouble(oPane.m_oXSplit->GetValue());
m_oBcw.WriteItemEnd(nCurPos);
} }
//YSplit //YSplit
if (oPane.m_oYSplit.IsInit()) if (oPane.m_oYSplit.IsInit())
{ {
m_oBcw.m_oStream.WriteByte(c_oSer_Pane::YSplit); nCurPos = m_oBcw.WriteItemStart(c_oSer_Pane::YSplit);
m_oBcw.m_oStream.WriteByte(c_oSerPropLenType::Double);
m_oBcw.m_oStream.WriteDouble(oPane.m_oYSplit->GetValue()); m_oBcw.m_oStream.WriteDouble(oPane.m_oYSplit->GetValue());
m_oBcw.WriteItemEnd(nCurPos);
} }
} }
......
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
//1 //1
//0 //0
//0 //0
//117 //118
#define INTVER 1,0,0,117 #define INTVER 1,0,0,118
#define STRVER "1,0,0,117\0" #define STRVER "1,0,0,118\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