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
6202ff1b
Commit
6202ff1b
authored
Nov 15, 2016
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
..
parent
c7bf97b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
ASCOfficeRtfFile/RtfFormatLib/source/Reader/OOXMathReader.cpp
...fficeRtfFile/RtfFormatLib/source/Reader/OOXMathReader.cpp
+9
-2
No files found.
ASCOfficeRtfFile/RtfFormatLib/source/Reader/OOXMathReader.cpp
View file @
6202ff1b
...
...
@@ -65,7 +65,10 @@ bool OOXMathReader::ParseElement(ReaderParameter oParam , OOX::WritingElement *
m_oCharProperty
.
m_nRevauth
=
oParam
.
oRtf
->
m_oRevisionTable
.
AddAuthor
(
pIns
->
m_sAuthor
.
get2
()
)
+
1
;
if
(
pIns
->
m_oDate
.
IsInit
())
m_oCharProperty
.
m_nRevdttm
=
RtfUtility
::
convertDateTime
(
string2std_string
(
pIns
->
m_oDate
->
GetValue
()));
{
std
::
wstring
sVal
=
string2std_string
(
pIns
->
m_oDate
->
GetValue
());
m_oCharProperty
.
m_nRevdttm
=
RtfUtility
::
convertDateTime
(
sVal
);
}
ParseElement
(
oParam
,
pIns
->
m_oRun
.
GetPointer
(),
rtfMath
);
}
...
...
@@ -77,7 +80,11 @@ bool OOXMathReader::ParseElement(ReaderParameter oParam , OOX::WritingElement *
m_oCharProperty
.
m_nRevauthDel
=
oParam
.
oRtf
->
m_oRevisionTable
.
AddAuthor
(
pDel
->
m_sAuthor
.
get2
()
)
+
1
;
if
(
pDel
->
m_oDate
.
IsInit
())
m_oCharProperty
.
m_nRevdttmDel
=
RtfUtility
::
convertDateTime
(
string2std_string
(
pDel
->
m_oDate
->
GetValue
()));
{
std
::
wstring
sVal
=
string2std_string
(
pDel
->
m_oDate
->
GetValue
());
m_oCharProperty
.
m_nRevdttmDel
=
RtfUtility
::
convertDateTime
(
sVal
);
}
ParseElement
(
oParam
,
pDel
->
m_oRun
.
GetPointer
(),
rtfMath
);
}
...
...
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