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
3d840334
Commit
3d840334
authored
Mar 20, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix added bug 34297
parent
5700503e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
11 deletions
+25
-11
ASCOfficeDocxFile2/DocWrapper/DocxSerializer.cpp
ASCOfficeDocxFile2/DocWrapper/DocxSerializer.cpp
+1
-1
ASCOfficeDocxFile2/DocWrapper/XlsxSerializer.cpp
ASCOfficeDocxFile2/DocWrapper/XlsxSerializer.cpp
+4
-4
Common/DocxFormat/Source/DocxFormat/Logic/Vml.cpp
Common/DocxFormat/Source/DocxFormat/Logic/Vml.cpp
+6
-0
Common/DocxFormat/Source/DocxFormat/Logic/Vml.h
Common/DocxFormat/Source/DocxFormat/Logic/Vml.h
+4
-1
Common/DocxFormat/Source/DocxFormat/VmlDrawing.h
Common/DocxFormat/Source/DocxFormat/VmlDrawing.h
+9
-4
X2tConverter/build/Qt/X2tConverter.pri
X2tConverter/build/Qt/X2tConverter.pri
+1
-1
No files found.
ASCOfficeDocxFile2/DocWrapper/DocxSerializer.cpp
View file @
3d840334
ASCOfficeDocxFile2/DocWrapper/XlsxSerializer.cpp
View file @
3d840334
Common/DocxFormat/Source/DocxFormat/Logic/Vml.cpp
View file @
3d840334
...
@@ -297,7 +297,13 @@ namespace OOX
...
@@ -297,7 +297,13 @@ namespace OOX
case
'x'
:
case
'x'
:
if
(
_T
(
"x:ClientData"
)
==
sName
)
if
(
_T
(
"x:ClientData"
)
==
sName
)
{
pItem
=
new
OOX
::
Vml
::
CClientData
(
oReader
);
pItem
=
new
OOX
::
Vml
::
CClientData
(
oReader
);
OOX
::
Vml
::
CClientData
*
client_data
=
dynamic_cast
<
OOX
::
Vml
::
CClientData
*>
(
pItem
);
if
((
client_data
)
&&
(
client_data
->
m_oObjectType
.
IsInit
()))
if
(
client_data
->
m_oObjectType
->
GetValue
()
==
SimpleTypes
::
Vml
::
vmlclientdataobjecttypeNote
)
m_bComment
=
true
;
}
break
;
break
;
...
...
Common/DocxFormat/Source/DocxFormat/Logic/Vml.h
View file @
3d840334
...
@@ -56,7 +56,7 @@ namespace OOX
...
@@ -56,7 +56,7 @@ namespace OOX
{
{
public:
public:
WritingElement_AdditionConstructors
(
CVmlCommonElements
)
WritingElement_AdditionConstructors
(
CVmlCommonElements
)
CVmlCommonElements
(){
}
CVmlCommonElements
(){
m_bComment
=
false
;
}
virtual
~
CVmlCommonElements
(){}
virtual
~
CVmlCommonElements
(){}
...
@@ -137,6 +137,9 @@ namespace OOX
...
@@ -137,6 +137,9 @@ namespace OOX
std
::
wstring
WriteAttributes
()
const
;
std
::
wstring
WriteAttributes
()
const
;
std
::
wstring
WriteElements
()
const
;
std
::
wstring
WriteElements
()
const
;
//internal
bool
m_bComment
;
};
};
//--------------------------------------------------------------------------------
//--------------------------------------------------------------------------------
...
...
Common/DocxFormat/Source/DocxFormat/VmlDrawing.h
View file @
3d840334
...
@@ -219,11 +219,14 @@ namespace OOX
...
@@ -219,11 +219,14 @@ namespace OOX
OOX
::
Vml
::
CVmlCommonElements
*
common
=
dynamic_cast
<
OOX
::
Vml
::
CVmlCommonElements
*>
(
pItem
);
OOX
::
Vml
::
CVmlCommonElements
*
common
=
dynamic_cast
<
OOX
::
Vml
::
CVmlCommonElements
*>
(
pItem
);
std
::
wstring
sSpid
;
std
::
wstring
sSpid
;
bool
bComment
=
false
;
if
(
common
)
if
(
common
)
{
{
if
(
common
->
m_sSpId
.
IsInit
())
sSpid
=
*
common
->
m_sSpId
;
if
(
common
->
m_sSpId
.
IsInit
())
sSpid
=
*
common
->
m_sSpId
;
else
if
(
common
->
m_sId
.
IsInit
())
sSpid
=
*
common
->
m_sId
;
else
if
(
common
->
m_sId
.
IsInit
())
sSpid
=
*
common
->
m_sId
;
bComment
=
common
->
m_bComment
;
}
}
else
else
{
{
...
@@ -243,11 +246,13 @@ namespace OOX
...
@@ -243,11 +246,13 @@ namespace OOX
element
.
nId
=
(
int
)
m_arrItems
.
size
()
-
1
;
element
.
nId
=
(
int
)
m_arrItems
.
size
()
-
1
;
element
.
sXml
=
elementContent
;
element
.
sXml
=
elementContent
;
element
.
pElement
=
pItem
;
element
.
pElement
=
pItem
;
element
.
bUsed
=
bComment
;
m_mapShapes
.
insert
(
std
::
make_pair
(
sSpid
,
element
));
m_mapShapes
.
insert
(
std
::
make_pair
(
sSpid
,
element
));
}
}
elementContent
.
clear
();
elementContent
.
clear
();
bReadyElement
=
false
;
bReadyElement
=
false
;
bComment
=
false
;
}
}
}
}
}
}
...
...
X2tConverter/build/Qt/X2tConverter.pri
View file @
3d840334
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
QT -= core
QT -= core
QT -= gui
QT -= gui
VERSION = 2.0.3.44
6
VERSION = 2.0.3.44
7
DEFINES += INTVER=$$VERSION
DEFINES += INTVER=$$VERSION
TARGET = x2t
TARGET = x2t
...
...
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