summaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2015-02-09 16:23:30 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-02-10 10:45:44 -0800
commit7d48c1fc267d44a5dede4bfdcf4e295e1fcf3227 (patch)
tree21bd66b6fb062b7491a87a7f8d3b839ec06e008c /qt-ui/mainwindow.h
parent9e3bff6b7c140023606445f04e20aec9cb613381 (diff)
downloadsubsurface-7d48c1fc267d44a5dede4bfdcf4e295e1fcf3227.tar.gz
Add the first call to registerApplicationState
This will be used to set the 'default' state. The other two possible states right now are plan and add; those will be created right next. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.h')
-rw-r--r--qt-ui/mainwindow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.h b/qt-ui/mainwindow.h
index 07e444683..bf75bf9d9 100644
--- a/qt-ui/mainwindow.h
+++ b/qt-ui/mainwindow.h
@@ -202,7 +202,7 @@ private:
QList<QAction *> profileToolbarActions;
struct WidgetForBorder {
- WidgetForBorder(QWidget *tl, QWidget *bl, QWidget *tr, QWidget *br) :
+ WidgetForBorder(QWidget *tl = 0, QWidget *bl = 0, QWidget *tr = 0, QWidget *br = 0) :
topLeft(tl), bottomLeft(bl), topRight(tr), bottomRight(br) {}
QWidget *topLeft;
QWidget *bottomLeft;