summaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-02-10 10:31:05 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-02-10 10:45:47 -0800
commitca154a65da7dd81006df36df2d70176f0eeeeaed (patch)
tree5bebeb27a605f29cfcf5cd63671b2fb386d66b52 /qt-ui/mainwindow.h
parent4817bb29917f58fd46561de4d8946061a0ff97ac (diff)
downloadsubsurface-ca154a65da7dd81006df36df2d70176f0eeeeaed.tar.gz
Rename the widget to better reflect what it does
This widget defines what's in each quadrant of the main window. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.h')
-rw-r--r--qt-ui/mainwindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/mainwindow.h b/qt-ui/mainwindow.h
index d91a80171..b0b526380 100644
--- a/qt-ui/mainwindow.h
+++ b/qt-ui/mainwindow.h
@@ -210,15 +210,15 @@ private:
struct dive_components what;
QList<QAction *> profileToolbarActions;
- struct WidgetForBorder {
- WidgetForBorder(QWidget *tl = 0, QWidget *bl = 0, QWidget *tr = 0, QWidget *br = 0) :
+ struct WidgetForQuadrant {
+ WidgetForQuadrant(QWidget *tl = 0, QWidget *bl = 0, QWidget *tr = 0, QWidget *br = 0) :
topLeft(tl), bottomLeft(bl), topRight(tr), bottomRight(br) {}
QWidget *topLeft;
QWidget *bottomLeft;
QWidget *topRight;
QWidget *bottomRight;
};
- QHash<QByteArray, WidgetForBorder> applicationState;
+ QHash<QByteArray, WidgetForQuadrant> applicationState;
QByteArray currentApplicationState;
};