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
badefbee
Commit
badefbee
authored
May 21, 2016
by
Alexander Trofimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
restore conflicts files after rebase
parent
3b2fb50b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Font.cpp
...ficeXlsFile2/source/XlsFormat/Logic/Biff_records/Font.cpp
+3
-3
X2tConverter/src/main.cpp
X2tConverter/src/main.cpp
+4
-0
No files found.
ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Font.cpp
View file @
badefbee
...
@@ -289,7 +289,7 @@ int Font::serialize_properties(std::wostream & stream, bool isRPr)
...
@@ -289,7 +289,7 @@ int Font::serialize_properties(std::wostream & stream, bool isRPr)
}
}
}
}
if
(
bCharSet
.
value
()
)
if
(
bCharSet
)
{
{
CP_XML_NODE
(
L"charset"
)
CP_XML_NODE
(
L"charset"
)
{
{
...
@@ -341,7 +341,7 @@ int Font::serialize_properties(std::wostream & stream, bool isRPr)
...
@@ -341,7 +341,7 @@ int Font::serialize_properties(std::wostream & stream, bool isRPr)
}
}
}
}
if
(
bFamily
.
value
()
)
if
(
bFamily
)
{
{
CP_XML_NODE
(
L"family"
)
CP_XML_NODE
(
L"family"
)
{
{
...
@@ -415,7 +415,7 @@ int Font::serialize_properties(std::wostream & stream, bool isRPr)
...
@@ -415,7 +415,7 @@ int Font::serialize_properties(std::wostream & stream, bool isRPr)
}
}
}
}
if
(
(
uls
.
value
())
&&
(
*
uls
.
value
()
>
0
)
)
if
(
uls
>
0
)
{
{
CP_XML_NODE
(
L"u"
)
CP_XML_NODE
(
L"u"
)
{
{
...
...
X2tConverter/src/main.cpp
View file @
badefbee
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
#include "../../Common/DocxFormat/Source/SystemUtility/FileSystem/Directory.h"
#include "../../Common/DocxFormat/Source/SystemUtility/FileSystem/Directory.h"
#include "../../DesktopEditor/common/Directory.h"
#include "../../DesktopEditor/common/Directory.h"
#include "../../DesktopEditor/doctrenderer/docbuilder.h"
//#include <iostream>
//#include <iostream>
...
@@ -415,5 +416,8 @@ int main(int argc, char *argv[])
...
@@ -415,5 +416,8 @@ int main(int argc, char *argv[])
// delete temp dir
// delete temp dir
NSDirectory
::
DeleteDirectory
(
sTempDir
);
NSDirectory
::
DeleteDirectory
(
sTempDir
);
//clean up v8
NSDoctRenderer
::
CDocBuilder
::
Dispose
();
return
getReturnErrorCode
(
result
);
return
getReturnErrorCode
(
result
);
}
}
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