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
697df83a
Commit
697df83a
authored
Oct 18, 2016
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
. linux build
parent
c30be9db
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
ASCOfficeDocxFile2/BinReader/Readers.h
ASCOfficeDocxFile2/BinReader/Readers.h
+2
-2
Common/DocxFormat/Source/XlsxFormat/Xlsx.h
Common/DocxFormat/Source/XlsxFormat/Xlsx.h
+2
-1
No files found.
ASCOfficeDocxFile2/BinReader/Readers.h
View file @
697df83a
...
...
@@ -6603,8 +6603,8 @@ public:
CString
sFilename
;
CString
sRelsName
;
int
nChartIndex
;
m_oFileWriter
.
m_oChartWriter
.
AddChart
(
sw
.
GetData
()
,
sRelsName
,
sFilename
,
nChartIndex
);
std
::
wstring
sContent
=
sw
.
GetData
();
m_oFileWriter
.
m_oChartWriter
.
AddChart
(
sContent
,
sRelsName
,
sFilename
,
nChartIndex
);
m_oFileWriter
.
m_oContentTypesWriter
.
AddOverrideRaw
(
oSaveParams
.
sAdditionalContentTypes
);
OOX
::
CPath
pathChartsRels
=
pathChartsRelsDir
.
GetPath
()
+
FILE_SEPARATOR_STR
+
sFilename
+
_T
(
".rels"
);
...
...
Common/DocxFormat/Source/XlsxFormat/Xlsx.h
View file @
697df83a
...
...
@@ -497,7 +497,8 @@ namespace OOX
if
(
pCell
->
m_oValue
.
IsInit
())
{
SimpleTypes
::
COnOff
<>
oOnOff
;
oOnOff
.
FromString
(
pCell
->
m_oValue
->
ToString
());
std
::
wstring
sVal
=
pCell
->
m_oValue
->
ToString
();
oOnOff
.
FromString
(
sVal
.
c_str
());
pCell
->
m_oValue
.
Init
();
if
(
oOnOff
.
ToBool
())
pCell
->
m_oValue
->
m_sText
=
_T
(
"1"
);
...
...
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