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
17047e6d
Commit
17047e6d
authored
Aug 25, 2016
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x2t v.2.0.2.386
parent
5a9873b6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
ASCOfficeOdfFileW/source/OdfFormat/odf_page_layout_context.cpp
...ficeOdfFileW/source/OdfFormat/odf_page_layout_context.cpp
+2
-0
ASCOfficeOdfFileW/source/Oox2OdfConverter/ConvertVml.cpp
ASCOfficeOdfFileW/source/Oox2OdfConverter/ConvertVml.cpp
+1
-1
ASCOfficeOdfFileW/source/Oox2OdfConverter/DocxConverter.cpp
ASCOfficeOdfFileW/source/Oox2OdfConverter/DocxConverter.cpp
+2
-2
X2tConverter/build/Qt/X2tConverter.pro
X2tConverter/build/Qt/X2tConverter.pro
+1
-1
No files found.
ASCOfficeOdfFileW/source/OdfFormat/odf_page_layout_context.cpp
100644 → 100755
View file @
17047e6d
...
@@ -329,6 +329,8 @@ bool odf_page_layout_context::add_footer(int type)
...
@@ -329,6 +329,8 @@ bool odf_page_layout_context::add_footer(int type)
if
(
!
elm
)
return
false
;
if
(
!
elm
)
return
false
;
if
(
master_state_list_
.
empty
())
start_master_page
(
L""
);
master_state_list_
.
back
().
add_footer
(
elm
);
master_state_list_
.
back
().
add_footer
(
elm
);
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
...
...
ASCOfficeOdfFileW/source/Oox2OdfConverter/ConvertVml.cpp
View file @
17047e6d
...
@@ -803,7 +803,7 @@ void OoxConverter::convert(OOX::Vml::CGroup *vml_group)
...
@@ -803,7 +803,7 @@ void OoxConverter::convert(OOX::Vml::CGroup *vml_group)
odf_context
()
->
drawing_context
()
->
start_shape
(
OOX
::
Spt2ShapeType
(
sptType
));
odf_context
()
->
drawing_context
()
->
start_shape
(
OOX
::
Spt2ShapeType
(
sptType
));
bSet
=
true
;
bSet
=
true
;
}
}
else
if
(
vml
->
m_oConnectorType
.
GetValue
()
!=
SimpleTypes
::
connectortypeNone
)
else
if
((
vml
->
m_oConnectorType
.
IsInit
())
&&
(
vml
->
m_oConnectorType
->
GetValue
()
!=
SimpleTypes
::
connectortypeNone
)
)
{
{
odf_context
()
->
drawing_context
()
->
start_shape
(
SimpleTypes
::
shapetypeStraightConnector1
);
odf_context
()
->
drawing_context
()
->
start_shape
(
SimpleTypes
::
shapetypeStraightConnector1
);
odf_context
()
->
drawing_context
()
->
set_line_width
(
1.
);
odf_context
()
->
drawing_context
()
->
set_line_width
(
1.
);
...
...
ASCOfficeOdfFileW/source/Oox2OdfConverter/DocxConverter.cpp
View file @
17047e6d
...
@@ -2025,7 +2025,7 @@ void DocxConverter::convert(OOX::Logic::CPicture* oox_pic)
...
@@ -2025,7 +2025,7 @@ void DocxConverter::convert(OOX::Logic::CPicture* oox_pic)
odf_context
()
->
drawing_context
()
->
start_shape
(
OOX
::
Spt2ShapeType
(
sptType
));
odf_context
()
->
drawing_context
()
->
start_shape
(
OOX
::
Spt2ShapeType
(
sptType
));
bSet
=
true
;
bSet
=
true
;
}
}
else
if
(
oox_pic
->
m_oShape
->
m_oConnectorType
.
GetValue
()
!=
SimpleTypes
::
connectortypeNone
)
else
if
((
oox_pic
->
m_oShape
->
m_oConnectorType
.
IsInit
())
&&
(
oox_pic
->
m_oShape
->
m_oConnectorType
->
GetValue
()
!=
SimpleTypes
::
connectortypeNone
)
)
{
{
odf_context
()
->
drawing_context
()
->
set_name
(
L"Connector"
);
odf_context
()
->
drawing_context
()
->
set_name
(
L"Connector"
);
odf_context
()
->
drawing_context
()
->
start_shape
(
SimpleTypes
::
shapetypeStraightConnector1
);
odf_context
()
->
drawing_context
()
->
start_shape
(
SimpleTypes
::
shapetypeStraightConnector1
);
...
@@ -2082,7 +2082,7 @@ void DocxConverter::convert(OOX::Logic::CObject* oox_obj)
...
@@ -2082,7 +2082,7 @@ void DocxConverter::convert(OOX::Logic::CObject* oox_obj)
odf_context
()
->
drawing_context
()
->
start_shape
(
OOX
::
Spt2ShapeType
(
sptType
));
odf_context
()
->
drawing_context
()
->
start_shape
(
OOX
::
Spt2ShapeType
(
sptType
));
bSet
=
true
;
bSet
=
true
;
}
}
else
if
(
oox_obj
->
m_oShape
->
m_oConnectorType
.
GetValue
()
!=
SimpleTypes
::
connectortypeNone
)
else
if
((
oox_obj
->
m_oShape
->
m_oConnectorType
.
IsInit
())
&&
(
oox_obj
->
m_oShape
->
m_oConnectorType
->
GetValue
()
!=
SimpleTypes
::
connectortypeNone
)
)
{
{
odf_context
()
->
drawing_context
()
->
set_name
(
L"Connector"
);
odf_context
()
->
drawing_context
()
->
set_name
(
L"Connector"
);
odf_context
()
->
drawing_context
()
->
start_shape
(
SimpleTypes
::
shapetypeStraightConnector1
);
odf_context
()
->
drawing_context
()
->
start_shape
(
SimpleTypes
::
shapetypeStraightConnector1
);
...
...
X2tConverter/build/Qt/X2tConverter.pro
View file @
17047e6d
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
QT
-=
core
QT
-=
core
QT
-=
gui
QT
-=
gui
VERSION
=
2.0
.
2.38
5
VERSION
=
2.0
.
2.38
6
DEFINES
+=
INTVER
=
$$
VERSION
DEFINES
+=
INTVER
=
$$
VERSION
TEMPLATE
=
app
TEMPLATE
=
app
...
...
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