Commit 0ed6c1f4 authored by konovalovsergey's avatar konovalovsergey

continuationSeparator

parent 6982b1d3
......@@ -5979,6 +5979,14 @@ public:
{
res = Read1(length, &Binary_DocumentTableReader::ReadObject, this, poResult);
}
else if ( c_oSerRunType::separator == type)
{
GetRunStringWriter().WriteString(CString(_T("<w:separator/>")));
}
else if ( c_oSerRunType::continuationSeparator == type)
{
GetRunStringWriter().WriteString(CString(_T("<w:continuationSeparator/>")));
}
else
res = c_oSerConstants::ReadUnknown;
return res;
......
......@@ -457,7 +457,9 @@ extern int g_nCurFormatVersion;
columnbreak = 18,
cr = 19,
noBreakHyphen = 20,
softHyphen = 21
softHyphen = 21,
separator = 22,
continuationSeparator = 23
};}
namespace c_oSerImageType{enum c_oSerImageType
{
......
......@@ -5073,6 +5073,18 @@ namespace BinDocxRW
m_oBcw.m_oStream.WriteLONG(c_oSerPropLenType::Null);
}
break;
case OOX::et_w_separator:
{
m_oBcw.m_oStream.WriteBYTE(c_oSerRunType::separator);
m_oBcw.m_oStream.WriteLONG(c_oSerPropLenType::Null);
}
break;
case OOX::et_w_continuationSeparator:
{
m_oBcw.m_oStream.WriteBYTE(c_oSerRunType::continuationSeparator);
m_oBcw.m_oStream.WriteLONG(c_oSerPropLenType::Null);
}
break;
case OOX::et_w_commentReference:
{
OOX::Logic::CCommentReference* pCommentReference = static_cast<OOX::Logic::CCommentReference*>(item);
......
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