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
51c6ce2b
Commit
51c6ce2b
authored
Apr 13, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
e13bc441
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
ASCOfficeDocxFile2/BinReader/DocumentWriter.h
ASCOfficeDocxFile2/BinReader/DocumentWriter.h
+1
-1
ASCOfficeDocxFile2/BinReader/Readers.h
ASCOfficeDocxFile2/BinReader/Readers.h
+4
-2
No files found.
ASCOfficeDocxFile2/BinReader/DocumentWriter.h
View file @
51c6ce2b
...
@@ -61,7 +61,7 @@ namespace Writers
...
@@ -61,7 +61,7 @@ namespace Writers
oFile
.
WriteStringUTF8
(
std
::
wstring
(
_T
(
"<w:body>"
)));
oFile
.
WriteStringUTF8
(
std
::
wstring
(
_T
(
"<w:body>"
)));
oFile
.
WriteStringUTF8
(
m_oContent
.
GetData
());
oFile
.
WriteStringUTF8
(
m_oContent
.
GetData
());
oFile
.
WriteStringUTF8
(
std
::
wstring
(
_T
(
"<w:sectPr
>"
)));
oFile
.
WriteStringUTF8
(
std
::
wstring
(
_T
(
"<w:sectPr>"
)));
oFile
.
WriteStringUTF8
(
WriteSectPrHdrFtr
());
oFile
.
WriteStringUTF8
(
WriteSectPrHdrFtr
());
oFile
.
WriteStringUTF8
(
m_oSecPr
.
GetData
());
oFile
.
WriteStringUTF8
(
m_oSecPr
.
GetData
());
oFile
.
WriteStringUTF8
(
std
::
wstring
(
_T
(
"</w:sectPr>"
)));
oFile
.
WriteStringUTF8
(
std
::
wstring
(
_T
(
"</w:sectPr>"
)));
...
...
ASCOfficeDocxFile2/BinReader/Readers.h
View file @
51c6ce2b
...
@@ -6615,8 +6615,10 @@ public:
...
@@ -6615,8 +6615,10 @@ public:
std
::
wstring
sChartsWorksheetRelsName
=
L"../embeddings/"
+
sXlsxFilename
;
std
::
wstring
sChartsWorksheetRelsName
=
L"../embeddings/"
+
sXlsxFilename
;
long
rIdXlsx
;
long
rIdXlsx
;
std
::
wstring
bstrChartsWorksheetRelType
=
OOX
::
FileTypes
::
MicrosoftOfficeExcelWorksheet
.
RelationType
();
std
::
wstring
bstrChartsWorksheetRelType
=
OOX
::
FileTypes
::
MicrosoftOfficeExcelWorksheet
.
RelationType
();
m_oFileWriter
.
m_pDrawingConverter
->
WriteRels
(
bstrChartsWorksheetRelType
,
sChartsWorksheetRelsName
,
std
::
wstring
(),
&
rIdXlsx
);
m_oFileWriter
.
m_pDrawingConverter
->
WriteRels
(
bstrChartsWorksheetRelType
,
sChartsWorksheetRelsName
,
std
::
wstring
(),
&
rIdXlsx
);
m_oFileWriter
.
m_pDrawingConverter
->
m_pImageManager
->
m_pContentTypes
->
AddDefault
(
L"xlsx"
);
pChartSpace
->
m_oChartSpace
.
m_externalData
=
new
OOX
::
Spreadsheet
::
CT_ExternalData
();
pChartSpace
->
m_oChartSpace
.
m_externalData
=
new
OOX
::
Spreadsheet
::
CT_ExternalData
();
pChartSpace
->
m_oChartSpace
.
m_externalData
->
m_id
=
new
std
::
wstring
();
pChartSpace
->
m_oChartSpace
.
m_externalData
->
m_id
=
new
std
::
wstring
();
pChartSpace
->
m_oChartSpace
.
m_externalData
->
m_id
->
append
(
L"rId"
);
pChartSpace
->
m_oChartSpace
.
m_externalData
->
m_id
->
append
(
L"rId"
);
...
...
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