diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-02-09 20:14:08 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-10 10:45:46 -0800 |
commit | 4867ee8ad87399f34a399f30def700b2fc045309 (patch) | |
tree | efce283591a52142e21522761934f189b1ab1a2a /qt-ui/diveplanner.h | |
parent | 6b038c2a9aa16410b614a7febaa3a856a7f7cd6f (diff) | |
download | subsurface-4867ee8ad87399f34a399f30def700b2fc045309.tar.gz |
Move the Profile out of the mainwindow.ui
And place it in mainwindow.cpp
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/diveplanner.h')
-rw-r--r-- | qt-ui/diveplanner.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qt-ui/diveplanner.h b/qt-ui/diveplanner.h index 49fd43ff6..196e17546 100644 --- a/qt-ui/diveplanner.h +++ b/qt-ui/diveplanner.h @@ -192,6 +192,9 @@ class PlannerDetails : public QWidget { Q_OBJECT public: explicit PlannerDetails(QWidget *parent = 0); + QPushButton *printPlan() const { return ui.printPlan; } + QTextEdit *divePlanOutput() const { return ui.divePlanOutput; } + private: Ui::plannerDetails ui; }; |