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>
This commit is contained in:
Tomaz Canabrava 2015-02-09 20:14:08 -02:00 committed by Dirk Hohndel
parent 6b038c2a9a
commit 4867ee8ad8
4 changed files with 17 additions and 104 deletions

View file

@ -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;
};