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
8eecbf5f
Commit
8eecbf5f
authored
Apr 27, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
9e1773df
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
ASCOfficeDocxFile2/BinReader/Readers.h
ASCOfficeDocxFile2/BinReader/Readers.h
+6
-3
X2tConverter/build/Qt/X2tConverter.pri
X2tConverter/build/Qt/X2tConverter.pri
+1
-1
No files found.
ASCOfficeDocxFile2/BinReader/Readers.h
View file @
8eecbf5f
...
...
@@ -7414,8 +7414,10 @@ public:
OOX
::
Logic
::
CDate
*
pDate
=
static_cast
<
OOX
::
Logic
::
CDate
*>
(
poResult
);
if
(
c_oSerSdt
::
FullDate
==
type
)
{
pDate
->
m_oFullDate
.
Init
();
pDate
->
m_oFullDate
->
SetValue
(
m_oBufferedStream
.
GetString3
(
length
));
std
::
wstring
sVal
=
m_oBufferedStream
.
GetString3
(
length
);
pDate
->
m_oFullDate
.
Init
();
pDate
->
m_oFullDate
->
SetValue
(
sVal
);
}
else
if
(
c_oSerSdt
::
Calendar
==
type
)
{
...
...
@@ -7432,7 +7434,8 @@ public:
{
pDate
->
m_oLid
.
Init
();
pDate
->
m_oLid
->
m_oVal
.
Init
();
pDate
->
m_oLid
->
m_oVal
->
SetValue
(
m_oBufferedStream
.
GetString3
(
length
));
std
::
wstring
sVal
=
m_oBufferedStream
.
GetString3
(
length
);
pDate
->
m_oLid
->
m_oVal
->
SetValue
(
sVal
);
}
else
if
(
c_oSerSdt
::
StoreMappedDataAs
==
type
)
{
...
...
X2tConverter/build/Qt/X2tConverter.pri
View file @
8eecbf5f
...
...
@@ -7,7 +7,7 @@
QT -= core
QT -= gui
VERSION = 2.4.45
1
.0
VERSION = 2.4.45
3
.0
DEFINES += INTVER=$$VERSION
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