diff options
author | Robert C. Helling <helling@atdotde.de> | 2015-06-16 14:37:02 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-16 20:33:07 -0700 |
commit | eca7d998e102ee10fc5a765a2b8d4a2176a5e2f5 (patch) | |
tree | 220353eb368741e8922aad1342696a651ff8ee38 /qt-ui/diveplanner.cpp | |
parent | f66ea4cbb03c126fce3805d778c9f197fb6fa5e8 (diff) | |
download | subsurface-eca7d998e102ee10fc5a765a2b8d4a2176a5e2f5.tar.gz |
Set up signalling to display notes in planner again.
This got broken in a recent transition to more abstract models.
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/diveplanner.cpp')
-rw-r--r-- | qt-ui/diveplanner.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index 7ab0aac86..e2a604b68 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -127,6 +127,8 @@ DivePlannerWidget::DivePlannerWidget(QWidget *parent, Qt::WindowFlags f) : QWidg plannerModel, SIGNAL(cylinderModelEdited())); connect(CylindersModel::instance(), SIGNAL(rowsRemoved(QModelIndex, int, int)), plannerModel, SIGNAL(cylinderModelEdited())); + connect(plannerModel, SIGNAL(calculatedPlanNotes()), MainWindow::instance(), SLOT(setPlanNotes())); + ui.tableWidget->setBtnToolTip(tr("Add dive data point")); connect(ui.startTime, SIGNAL(timeChanged(QTime)), plannerModel, SLOT(setStartTime(QTime))); |