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
5f9631a3
Commit
5f9631a3
authored
Mar 02, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
..
parent
ef7df690
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/LineTo.h
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/LineTo.h
+3
-3
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/MoveTo.h
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/MoveTo.h
+1
-1
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/QuadBezTo.h
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/QuadBezTo.h
+3
-3
ASCOfficePPTXFile/PPTXFormat/Logic/SpTree.h
ASCOfficePPTXFile/PPTXFormat/Logic/SpTree.h
+1
-1
No files found.
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/LineTo.h
View file @
5f9631a3
...
...
@@ -134,11 +134,11 @@ namespace PPTX
virtual
std
::
wstring
GetODString
()
const
{
std
::
wstring
str
=
L"<pt x=
\"
"
+
x
+
L"
\"
y=
\"
"
+
y
+
L"
\"
/>"
;
return
_T
(
"<lnTo>"
)
+
str
+
_T
(
"</lnTo>"
);
std
::
wstring
str
=
L"<pt x=
\"
"
+
x
+
L"
\"
y=
\"
"
+
y
+
L"
\"
/>"
;
return
_T
(
"<lnTo>"
)
+
str
+
_T
(
"</lnTo>"
);
}
};
}
// namespace Logic
}
// namespace PPTX
#endif // PPTX_LOGIC_LINETO_INCLUDE_H_
\ No newline at end of file
#endif // PPTX_LOGIC_LINETO_INCLUDE_H_
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/MoveTo.h
View file @
5f9631a3
...
...
@@ -132,7 +132,7 @@ namespace PPTX
public:
virtual
std
::
wstring
GetODString
()
const
{
std
::
wstring
str
=
L"<pt x=
\"
"
+
x
+
L"
\"
y=
\"
"
+
y
+
L"
\"
/>"
;
std
::
wstring
str
=
L"<pt x=
\"
"
+
x
+
L"
\"
y=
\"
"
+
y
+
L"
\"
/>"
;
return
_T
(
"<moveTo>"
)
+
str
+
_T
(
"</moveTo>"
);
}
};
...
...
ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/QuadBezTo.h
View file @
5f9631a3
...
...
@@ -161,8 +161,8 @@ namespace PPTX
virtual
std
::
wstring
GetODString
()
const
{
std
::
wstring
str1
=
L"<pt x=
\"
"
+
x
[
0
]
+
L"
\"
y=
\"
"
+
y
[
0
]
+
L"
\"
/>"
;
std
::
wstring
str2
=
L"<pt x=
\"
"
+
x
[
1
]
+
L"
\"
y=
\"
"
+
y
[
1
]
+
L"
\"
/>"
;
std
::
wstring
str1
=
L"<pt x=
\"
"
+
x
[
0
]
+
L"
\"
y=
\"
"
+
y
[
0
]
+
L"
\"
/>"
;
std
::
wstring
str2
=
L"<pt x=
\"
"
+
x
[
1
]
+
L"
\"
y=
\"
"
+
y
[
1
]
+
L"
\"
/>"
;
return
_T
(
"<quadBezTo>"
)
+
str1
+
str2
+
_T
(
"</quadBezTo>"
);
}
...
...
@@ -170,4 +170,4 @@ namespace PPTX
}
// namespace Logic
}
// namespace PPTX
#endif // PPTX_LOGIC_QUADBEZTO_INCLUDE_H_
\ No newline at end of file
#endif // PPTX_LOGIC_QUADBEZTO_INCLUDE_H_
ASCOfficePPTXFile/PPTXFormat/Logic/SpTree.h
View file @
5f9631a3
...
...
@@ -298,7 +298,7 @@ namespace PPTX
SpTreeElem
elm
;
elm
.
fromPPTY
(
pReader
);
if
(
SpTreeElems
.
back
()
.
is_init
())
if
(
elm
.
is_init
())
{
if
(
elm
.
getType
()
==
OOX
::
et_p_ShapeTree
)
{
...
...
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