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
9a8d3edb
Commit
9a8d3edb
authored
Feb 17, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
305ebda7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
Common/DocxFormat/Source/SystemUtility/SystemUtility.cpp
Common/DocxFormat/Source/SystemUtility/SystemUtility.cpp
+2
-2
DesktopEditor/common/File.h
DesktopEditor/common/File.h
+1
-0
X2tConverter/build/Qt/X2tConverter.pri
X2tConverter/build/Qt/X2tConverter.pri
+1
-1
No files found.
Common/DocxFormat/Source/SystemUtility/SystemUtility.cpp
View file @
9a8d3edb
...
...
@@ -176,11 +176,11 @@ namespace OOX
std
::
wstring
lowerFileName
=
XmlUtils
::
GetLower
(
m_strFilename
);
CArray
<
std
::
wstring
>
trueArray
;
std
::
vector
<
std
::
wstring
>
trueArray
;
NSDirectory
::
GetFiles2
(
fileDirectory
,
trueArray
);
for
(
int
i
=
0
;
i
<
trueArray
.
GetCount
();
i
++
)
for
(
size_t
i
=
0
;
i
<
trueArray
.
size
();
i
++
)
{
std
::
wstring
lowerTest
=
XmlUtils
::
GetLower
(
trueArray
[
i
]);
...
...
DesktopEditor/common/File.h
View file @
9a8d3edb
...
...
@@ -49,6 +49,7 @@
#if defined(__linux__) || defined(_MAC) && !defined(_IOS)
#include <unistd.h>
#include <string.h>
#endif
#ifdef _IOS
...
...
X2tConverter/build/Qt/X2tConverter.pri
View file @
9a8d3edb
...
...
@@ -7,7 +7,7 @@
QT -= core
QT -= gui
VERSION = 2.0.3.44
0
VERSION = 2.0.3.44
1
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