File tree 5 files changed +15
-9
lines changed
5 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 1
1
* .pro.user
2
2
/ build
3
+ * .o
4
+ * .dylib
5
+ * .app
6
+ qrc_ *
7
+ moc_ *
8
+ ui_ *
9
+ Makefile
10
+
Original file line number Diff line number Diff line change 1
1
TEMPLATE = subdirs
2
- CONFIG += ordered
3
2
4
3
SUBDIRS = \
5
4
src \
6
5
demo \
7
6
example
7
+
8
+ demo.depends = src
9
+ example.depends = src
Original file line number Diff line number Diff line change 57
57
#include " DockManager.h"
58
58
#include " DockWidget.h"
59
59
#include " DockAreaWidget.h"
60
- #include " AnimatedLabel.h"
61
60
62
61
63
62
// ============================================================================
Original file line number Diff line number Diff line change 1
1
/* ******************************************************************************
2
2
** Qt Advanced Docking System
3
3
** Copyright (C) 2017 Uwe Kindler
4
- **
4
+ **
5
5
** This library is free software; you can redistribute it and/or
6
6
** modify it under the terms of the GNU Lesser General Public
7
7
** License as published by the Free Software Foundation; either
8
8
** version 2.1 of the License, or (at your option) any later version.
9
- **
9
+ **
10
10
** This library is distributed in the hope that it will be useful,
11
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
12
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
13
** Lesser General Public License for more details.
14
- **
14
+ **
15
15
** You should have received a copy of the GNU Lesser General Public
16
16
** License along with this library; If not, see <http://www.gnu.org/licenses/>.
17
17
******************************************************************************/
@@ -61,9 +61,6 @@ namespace ads
61
61
{
62
62
static const char * const INDEX_PROPERTY = " index" ;
63
63
static const char * const ACTION_PROPERTY = " action" ;
64
- static const char * const DOCKWIDGET_PROPERTY = " dockwidget" ;
65
- static const int APPEND = -1 ;
66
-
67
64
68
65
/* *
69
66
* New dock area layout mimics stack layout but only inserts the current
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ private slots:
131
131
bool isClosable () const ;
132
132
133
133
public slots:
134
- virtual void setVisible (bool visible);
134
+ virtual void setVisible (bool visible) override ;
135
135
136
136
signals:
137
137
void activeTabChanged ();
You can’t perform that action at this time.
0 commit comments