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
002d3045
Commit
002d3045
authored
Jul 20, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug #35396. version up.
parent
ebb9c89a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
ASCOfficeTxtFile/TxtXmlFormatLib/Source/TxtFormat/TxtFile.cpp
...fficeTxtFile/TxtXmlFormatLib/Source/TxtFormat/TxtFile.cpp
+4
-4
X2tConverter/build/Qt/X2tConverter.pri
X2tConverter/build/Qt/X2tConverter.pri
+2
-2
No files found.
ASCOfficeTxtFile/TxtXmlFormatLib/Source/TxtFormat/TxtFile.cpp
View file @
002d3045
...
@@ -51,7 +51,7 @@ const std::list<std::string> TxtFile::readAnsiOrCodePage() // == readUtf8without
...
@@ -51,7 +51,7 @@ const std::list<std::string> TxtFile::readAnsiOrCodePage() // == readUtf8without
std
::
list
<
std
::
string
>
result
;
std
::
list
<
std
::
string
>
result
;
NSFile
::
CFileBinary
file_binary
;
NSFile
::
CFileBinary
file_binary
;
if
(
file_binary
.
OpenFile
(
m_path
)
!=
S_OK
)
return
result
;
if
(
file_binary
.
OpenFile
(
m_path
)
==
false
)
return
result
;
DWORD
file_size
=
file_binary
.
GetFileSize
();
DWORD
file_size
=
file_binary
.
GetFileSize
();
char
*
file_data
=
new
char
[
file_size
];
char
*
file_data
=
new
char
[
file_size
];
...
@@ -118,7 +118,7 @@ const std::list<std::wstring> TxtFile::readUnicode()
...
@@ -118,7 +118,7 @@ const std::list<std::wstring> TxtFile::readUnicode()
std
::
list
<
std
::
wstring
>
result
;
std
::
list
<
std
::
wstring
>
result
;
NSFile
::
CFileBinary
file_binary
;
NSFile
::
CFileBinary
file_binary
;
if
(
file_binary
.
OpenFile
(
m_path
)
!=
S_OK
)
return
result
;
if
(
file_binary
.
OpenFile
(
m_path
)
==
false
)
return
result
;
DWORD
file_size
=
file_binary
.
GetFileSize
();
DWORD
file_size
=
file_binary
.
GetFileSize
();
char
*
file_data
=
new
char
[
file_size
];
char
*
file_data
=
new
char
[
file_size
];
...
@@ -135,7 +135,7 @@ const std::list<std::wstring> TxtFile::readBigEndian()
...
@@ -135,7 +135,7 @@ const std::list<std::wstring> TxtFile::readBigEndian()
std
::
list
<
std
::
wstring
>
result
;
std
::
list
<
std
::
wstring
>
result
;
NSFile
::
CFileBinary
file_binary
;
NSFile
::
CFileBinary
file_binary
;
if
(
file_binary
.
OpenFile
(
m_path
)
!=
S_OK
)
return
result
;
if
(
file_binary
.
OpenFile
(
m_path
)
==
false
)
return
result
;
DWORD
file_size
=
file_binary
.
GetFileSize
();
DWORD
file_size
=
file_binary
.
GetFileSize
();
char
*
file_data
=
new
char
[
file_size
];
char
*
file_data
=
new
char
[
file_size
];
...
@@ -160,7 +160,7 @@ const std::list<std::string> TxtFile::readUtf8()
...
@@ -160,7 +160,7 @@ const std::list<std::string> TxtFile::readUtf8()
std
::
list
<
std
::
string
>
result
;
std
::
list
<
std
::
string
>
result
;
NSFile
::
CFileBinary
file_binary
;
NSFile
::
CFileBinary
file_binary
;
if
(
file_binary
.
OpenFile
(
m_path
)
!=
S_OK
)
return
result
;
if
(
file_binary
.
OpenFile
(
m_path
)
==
false
)
return
result
;
DWORD
file_size
=
file_binary
.
GetFileSize
();
DWORD
file_size
=
file_binary
.
GetFileSize
();
char
*
file_data
=
new
char
[
file_size
];
char
*
file_data
=
new
char
[
file_size
];
...
...
X2tConverter/build/Qt/X2tConverter.pri
View file @
002d3045
#-------------------------------------------------
#-------------------------------------------------
#
#
# Project created by QtCreator 2014-10-03T18:30:31
# Project created by QtCreator 2014-10-03T18:30:31
#
#
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
QT -= core
QT -= core
QT -= gui
QT -= gui
VERSION = 2.4.4
68
.0
VERSION = 2.4.4
70
.0
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