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
a17a0429
Commit
a17a0429
authored
May 16, 2017
by
Sergey Konovalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build linux
parent
f7ba686f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
ASCOfficeDocxFile2/BinReader/Readers.h
ASCOfficeDocxFile2/BinReader/Readers.h
+10
-5
No files found.
ASCOfficeDocxFile2/BinReader/Readers.h
View file @
a17a0429
...
...
@@ -3846,15 +3846,17 @@ public:
}
else
if
(
c_oSerFFData
::
EntryMacro
==
type
)
{
std
::
wstring
sVal
=
m_oBufferedStream
.
GetString3
(
length
);
pFFData
->
m_oEntryMacro
.
Init
();
pFFData
->
m_oEntryMacro
->
m_oVal
.
Init
();
pFFData
->
m_oEntryMacro
->
m_oVal
->
SetValue
(
m_oBufferedStream
.
GetString3
(
length
)
);
pFFData
->
m_oEntryMacro
->
m_oVal
->
SetValue
(
sVal
);
}
else
if
(
c_oSerFFData
::
ExitMacro
==
type
)
{
std
::
wstring
sVal
=
m_oBufferedStream
.
GetString3
(
length
);
pFFData
->
m_oExitMacro
.
Init
();
pFFData
->
m_oExitMacro
->
m_oVal
.
Init
();
pFFData
->
m_oExitMacro
->
m_oVal
->
SetValue
(
m_oBufferedStream
.
GetString3
(
length
)
);
pFFData
->
m_oExitMacro
->
m_oVal
->
SetValue
(
sVal
);
}
else
if
(
c_oSerFFData
::
HelpText
==
type
)
{
...
...
@@ -3869,9 +3871,10 @@ public:
}
else
if
(
c_oSerFFData
::
Name
==
type
)
{
std
::
wstring
sVal
=
m_oBufferedStream
.
GetString3
(
length
);
pFFData
->
m_oName
.
Init
();
pFFData
->
m_oName
->
m_oVal
.
Init
();
pFFData
->
m_oName
->
m_oVal
->
SetValue
(
m_oBufferedStream
.
GetString3
(
length
)
);
pFFData
->
m_oName
->
m_oVal
->
SetValue
(
sVal
);
}
else
if
(
c_oSerFFData
::
StatusText
==
type
)
{
...
...
@@ -3960,8 +3963,9 @@ public:
}
else
if
(
c_oSerFFData
::
HTVal
==
type
)
{
std
::
wstring
sVal
=
m_oBufferedStream
.
GetString3
(
length
);
pHelpText
->
m_oVal
.
Init
();
pHelpText
->
m_oVal
->
SetValue
(
m_oBufferedStream
.
GetString3
(
length
)
);
pHelpText
->
m_oVal
->
SetValue
(
sVal
);
}
else
res
=
c_oSerConstants
::
ReadUnknown
;
...
...
@@ -3978,8 +3982,9 @@ public:
}
else
if
(
c_oSerFFData
::
HTVal
==
type
)
{
std
::
wstring
sVal
=
m_oBufferedStream
.
GetString3
(
length
);
pStatusText
->
m_oVal
.
Init
();
pStatusText
->
m_oVal
->
SetValue
(
m_oBufferedStream
.
GetString3
(
length
)
);
pStatusText
->
m_oVal
->
SetValue
(
sVal
);
}
else
res
=
c_oSerConstants
::
ReadUnknown
;
...
...
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