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
b6781c03
Commit
b6781c03
authored
Nov 17, 2016
by
konovalovsergey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
for bug 33424
parent
1e8a65c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
Common/DocxFormat/Source/XlsxFormat/Drawing/FromTo.h
Common/DocxFormat/Source/XlsxFormat/Drawing/FromTo.h
+3
-3
Common/DocxFormat/Source/XlsxFormat/Drawing/Pos.h
Common/DocxFormat/Source/XlsxFormat/Drawing/Pos.h
+3
-3
No files found.
Common/DocxFormat/Source/XlsxFormat/Drawing/FromTo.h
View file @
b6781c03
...
@@ -140,8 +140,8 @@ namespace OOX
...
@@ -140,8 +140,8 @@ namespace OOX
virtual
void
toXML
(
NSStringUtils
::
CStringBuilder
&
writer
)
const
virtual
void
toXML
(
NSStringUtils
::
CStringBuilder
&
writer
)
const
{
{
writer
.
WriteString
(
_T
(
"<xdr:ext"
));
writer
.
WriteString
(
_T
(
"<xdr:ext"
));
WritingStringNullableAttrInt64
(
L"cx"
,
m_oCx
,
m_oCx
->
GetValue
());
WritingStringNullableAttrInt64
(
L"cx"
,
m_oCx
,
m_oCx
->
ToEmu
());
WritingStringNullableAttrInt64
(
L"cy"
,
m_oCy
,
m_oCy
->
GetValue
());
WritingStringNullableAttrInt64
(
L"cy"
,
m_oCy
,
m_oCy
->
ToEmu
());
writer
.
WriteString
(
_T
(
"/>"
));
writer
.
WriteString
(
_T
(
"/>"
));
}
}
virtual
void
fromXML
(
XmlUtils
::
CXmlLiteReader
&
oReader
)
virtual
void
fromXML
(
XmlUtils
::
CXmlLiteReader
&
oReader
)
...
@@ -175,4 +175,4 @@ namespace OOX
...
@@ -175,4 +175,4 @@ namespace OOX
}
//Spreadsheet
}
//Spreadsheet
}
// namespace OOX
}
// namespace OOX
#endif // OOX_FROMTO_FILE_INCLUDE_H_
#endif // OOX_FROMTO_FILE_INCLUDE_H_
\ No newline at end of file
Common/DocxFormat/Source/XlsxFormat/Drawing/Pos.h
View file @
b6781c03
...
@@ -60,8 +60,8 @@ namespace OOX
...
@@ -60,8 +60,8 @@ namespace OOX
virtual
void
toXML
(
NSStringUtils
::
CStringBuilder
&
writer
)
const
virtual
void
toXML
(
NSStringUtils
::
CStringBuilder
&
writer
)
const
{
{
writer
.
WriteString
(
_T
(
"<xdr:pos"
));
writer
.
WriteString
(
_T
(
"<xdr:pos"
));
WritingStringNullableAttrInt64
(
L"x"
,
m_oX
,
m_oX
->
GetValue
());
WritingStringNullableAttrInt64
(
L"x"
,
m_oX
,
m_oX
->
ToEmu
());
WritingStringNullableAttrInt64
(
L"y"
,
m_oY
,
m_oY
->
GetValue
());
WritingStringNullableAttrInt64
(
L"y"
,
m_oY
,
m_oY
->
ToEmu
());
writer
.
WriteString
(
_T
(
"/>"
));
writer
.
WriteString
(
_T
(
"/>"
));
}
}
virtual
void
fromXML
(
XmlUtils
::
CXmlLiteReader
&
oReader
)
virtual
void
fromXML
(
XmlUtils
::
CXmlLiteReader
&
oReader
)
...
@@ -95,4 +95,4 @@ namespace OOX
...
@@ -95,4 +95,4 @@ namespace OOX
}
//Spreadsheet
}
//Spreadsheet
}
// namespace OOX
}
// namespace OOX
#endif // OOX_POS_FILE_INCLUDE_H_
#endif // OOX_POS_FILE_INCLUDE_H_
\ No newline at end of file
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