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
21744c16
Commit
21744c16
authored
May 26, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
0892e254
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
DesktopEditor/raster/Metafile/Emf/EmfFile.cpp
DesktopEditor/raster/Metafile/Emf/EmfFile.cpp
+2
-2
DesktopEditor/raster/Metafile/StarView/SvmFile.cpp
DesktopEditor/raster/Metafile/StarView/SvmFile.cpp
+2
-2
No files found.
DesktopEditor/raster/Metafile/Emf/EmfFile.cpp
View file @
21744c16
...
...
@@ -45,7 +45,7 @@ static const struct ActionNamesEmf
{
int
actionNumber
;
std
::
wstring
actionName
;
}
actionNames
[]
=
}
actionNames
Emf
[]
=
{
{
0
,
L"Unknown"
},
{
EMR_HEADER
,
L"EMR_HEADER"
},
...
...
@@ -345,7 +345,7 @@ static const struct ActionNamesEmf
#ifdef _DEBUG
if
(
need_skip
!=
0
&&
!
m_pOutput
)
{
std
::
wstring
name
=
actionNames
[
ulType
].
actionName
;
std
::
wstring
name
=
actionNamesEmf
[
ulType
].
actionName
;
std
::
wcout
<<
name
<<
L"
\t\t
("
<<
ulType
<<
L")
\t
; skiped = "
<<
need_skip
<<
L"
\n
"
;
}
...
...
DesktopEditor/raster/Metafile/StarView/SvmFile.cpp
View file @
21744c16
...
...
@@ -54,7 +54,7 @@ static const struct ActionNamesSmv
{
int
actionNumber
;
std
::
wstring
actionName
;
}
actionNames
[]
=
}
actionNames
Smv
[]
=
{
{
META_NULL_ACTION
,
L"META_NULL_ACTION"
},
{
META_PIXEL_ACTION
,
L"META_PIXEL_ACTION"
},
...
...
@@ -224,7 +224,7 @@ void CSvmFile::PlayMetaFile()
#ifdef _DEBUG
if
(
100
<=
actionType
&&
actionType
<=
META_LAST_ACTION
&&
need_skip
>
0
&&
!
m_pOutput
)
{
std
::
wstring
name
=
actionNames
[
actionType
-
99
].
actionName
;
std
::
wstring
name
=
actionNamesSmv
[
actionType
-
99
].
actionName
;
std
::
wcout
<<
name
<<
L"
\t\t
"
<<
actionType
<<
L"
\t
(version = "
<<
m_currentActionVersion
<<
L")
\t
; skiped = "
<<
need_skip
<<
L"
\n
"
;
}
...
...
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