Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
1441c1f5
Commit
1441c1f5
authored
Aug 13, 2018
by
Clément Fauconnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no gcc warnings and no C++11 features on windows
parent
a69d1b39
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
OpenBoard.pro
OpenBoard.pro
+3
-3
UBCFFAdaptor.cpp
plugins/cffadaptor/src/UBCFFAdaptor.cpp
+2
-2
UBDocumentController.cpp
src/document/UBDocumentController.cpp
+3
-1
No files found.
OpenBoard.pro
View file @
1441c1f5
...
...
@@ -9,9 +9,9 @@ CONFIG += debug_and_release \
VERSION_MAJ
=
1
VERSION_MIN
=
4
VERSION_PATCH
=
1
VERSION_TYPE
=
r
#
a
=
alpha
,
b
=
beta
,
rc
=
release
candidate
,
r
=
release
,
other
=>
error
VERSION_MIN
=
5
VERSION_PATCH
=
0
VERSION_TYPE
=
a
#
a
=
alpha
,
b
=
beta
,
rc
=
release
candidate
,
r
=
release
,
other
=>
error
VERSION_BUILD
=
0
VERSION
=
"$${VERSION_MAJ}.$${VERSION_MIN}.$${VERSION_PATCH}-$${VERSION_TYPE}.$${VERSION_BUILD}"
...
...
plugins/cffadaptor/src/UBCFFAdaptor.cpp
View file @
1441c1f5
...
...
@@ -33,11 +33,11 @@
#include "UBGlobals.h"
#include "UBCFFConstants.h"
THIRD_PARTY_WARNINGS_DISABLE
//
THIRD_PARTY_WARNINGS_DISABLE
#include "quazip.h"
#include "quazipfile.h"
#include "quazipfileinfo.h"
THIRD_PARTY_WARNINGS_ENABLE
//
THIRD_PARTY_WARNINGS_ENABLE
UBCFFAdaptor
::
UBCFFAdaptor
()
{}
...
...
src/document/UBDocumentController.cpp
View file @
1441c1f5
...
...
@@ -2004,7 +2004,9 @@ void UBDocumentController::setupViews()
//set sizes (left and right sides of the splitter) for the splitter here because it cannot be done in the form editor.
const
int
leftSplitterSize
=
100
;
const
int
rightSplitterSize
=
1200
;
QList
<
int
>
splitterSizes
=
{
leftSplitterSize
,
rightSplitterSize
};
QList
<
int
>
splitterSizes
;
splitterSizes
.
append
(
leftSplitterSize
);
splitterSizes
.
append
(
rightSplitterSize
);
mDocumentUI
->
splitter
->
setSizes
(
splitterSizes
);
//mDocumentUI->documentTreeView->hideColumn(1);
...
...
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