Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
0ed6c1f4
Commit
0ed6c1f4
authored
Jun 08, 2016
by
konovalovsergey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
continuationSeparator
parent
6982b1d3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
1 deletion
+23
-1
ASCOfficeDocxFile2/BinReader/Readers.h
ASCOfficeDocxFile2/BinReader/Readers.h
+8
-0
ASCOfficeDocxFile2/BinWriter/BinReaderWriterDefines.h
ASCOfficeDocxFile2/BinWriter/BinReaderWriterDefines.h
+3
-1
ASCOfficeDocxFile2/BinWriter/BinWriters.h
ASCOfficeDocxFile2/BinWriter/BinWriters.h
+12
-0
No files found.
ASCOfficeDocxFile2/BinReader/Readers.h
View file @
0ed6c1f4
...
...
@@ -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
;
...
...
ASCOfficeDocxFile2/BinWriter/BinReaderWriterDefines.h
View file @
0ed6c1f4
...
...
@@ -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
{
...
...
ASCOfficeDocxFile2/BinWriter/BinWriters.h
View file @
0ed6c1f4
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment