Skip to content

Commit 4fa8937

Browse files
Merge pull request #16 from sgaist/various_fixes
Various fixes
2 parents f26bee6 + 1aaa56e commit 4fa8937

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
*.pro.user
22
/ build
3+
*.o
4+
*.dylib
5+
*.app
6+
qrc_*
7+
moc_*
8+
ui_*
9+
Makefile
10+

ads.pro

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
TEMPLATE = subdirs
2-
CONFIG += ordered
32

43
SUBDIRS = \
54
src \
65
demo \
76
example
7+
8+
demo.depends = src
9+
example.depends = src

demo/MainWindow.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
#include "DockManager.h"
5858
#include "DockWidget.h"
5959
#include "DockAreaWidget.h"
60-
#include "AnimatedLabel.h"
6160

6261

6362
//============================================================================

src/DockAreaWidget.cpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*******************************************************************************
22
** Qt Advanced Docking System
33
** Copyright (C) 2017 Uwe Kindler
4-
**
4+
**
55
** This library is free software; you can redistribute it and/or
66
** modify it under the terms of the GNU Lesser General Public
77
** License as published by the Free Software Foundation; either
88
** version 2.1 of the License, or (at your option) any later version.
9-
**
9+
**
1010
** This library is distributed in the hope that it will be useful,
1111
** but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1313
** Lesser General Public License for more details.
14-
**
14+
**
1515
** You should have received a copy of the GNU Lesser General Public
1616
** License along with this library; If not, see <http://www.gnu.org/licenses/>.
1717
******************************************************************************/
@@ -61,9 +61,6 @@ namespace ads
6161
{
6262
static const char* const INDEX_PROPERTY = "index";
6363
static const char* const ACTION_PROPERTY = "action";
64-
static const char* const DOCKWIDGET_PROPERTY = "dockwidget";
65-
static const int APPEND = -1;
66-
6764

6865
/**
6966
* New dock area layout mimics stack layout but only inserts the current

src/DockWidgetTab.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ private slots:
131131
bool isClosable() const;
132132

133133
public slots:
134-
virtual void setVisible(bool visible);
134+
virtual void setVisible(bool visible) override;
135135

136136
signals:
137137
void activeTabChanged();

0 commit comments

Comments
 (0)