summaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-02-10 10:41:15 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-02-10 10:45:47 -0800
commit32960899532b3749f38b65edabe6f2372522e53b (patch)
tree302fb94d9e74d4091019d8e8b305f5fcedc02c81 /qt-ui/mainwindow.h
parentca154a65da7dd81006df36df2d70176f0eeeeaed (diff)
downloadsubsurface-32960899532b3749f38b65edabe6f2372522e53b.tar.gz
Change the order of the quadrants
At least to me it seems more natural to enumerate them row by row instead of column by column, so now we do 1 2 instead of 1 3 3 4 2 4 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.h')
-rw-r--r--qt-ui/mainwindow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/qt-ui/mainwindow.h b/qt-ui/mainwindow.h
index b0b526380..3405d9e56 100644
--- a/qt-ui/mainwindow.h
+++ b/qt-ui/mainwindow.h
@@ -199,7 +199,7 @@ private:
void saveSplitterSizes();
QString lastUsedDir();
void updateLastUsedDir(const QString &s);
- void registerApplicationState(const QByteArray& state, QWidget *topLeft, QWidget *bottomLeft, QWidget *topRight, QWidget *bottomRight);
+ void registerApplicationState(const QByteArray& state, QWidget *topLeft, QWidget *topRight, QWidget *bottomLeft, QWidget *bottomRight);
bool filesAsArguments;
UpdateManager *updateManager;
@@ -211,11 +211,11 @@ private:
QList<QAction *> profileToolbarActions;
struct WidgetForQuadrant {
- WidgetForQuadrant(QWidget *tl = 0, QWidget *bl = 0, QWidget *tr = 0, QWidget *br = 0) :
- topLeft(tl), bottomLeft(bl), topRight(tr), bottomRight(br) {}
+ WidgetForQuadrant(QWidget *tl = 0, QWidget *tr = 0, QWidget *bl = 0, QWidget *br = 0) :
+ topLeft(tl), topRight(tr), bottomLeft(bl), bottomRight(br) {}
QWidget *topLeft;
- QWidget *bottomLeft;
QWidget *topRight;
+ QWidget *bottomLeft;
QWidget *bottomRight;
};
QHash<QByteArray, WidgetForQuadrant> applicationState;