summaryrefslogtreecommitdiffstats
path: root/qt-ui/divelistview.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-06-26 15:31:01 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-06-26 15:49:19 -0700
commitf6d133d7423bb0dc2f17c1c68dc50de1ff6824a7 (patch)
tree62de6192abae0d76e2199600b6b57ba2dd960f17 /qt-ui/divelistview.cpp
parent81fd56b16fd4678626a9cadec7311fffbccec502 (diff)
downloadsubsurface-f6d133d7423bb0dc2f17c1c68dc50de1ff6824a7.tar.gz
Fix crash when trying to add a dive or plan when a filter is active.
The planner used the selected dive on the dive list, and when there's a filtering in action it can be in a state where there's no dive selected. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelistview.cpp')
-rw-r--r--qt-ui/divelistview.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/qt-ui/divelistview.cpp b/qt-ui/divelistview.cpp
index 78186ecd0..4f5bfec26 100644
--- a/qt-ui/divelistview.cpp
+++ b/qt-ui/divelistview.cpp
@@ -825,3 +825,9 @@ void DiveListView::updateLastImageTimeOffset(const int offset)
s.beginGroup("MainWindow");
s.setValue("LastImageTimeOffset", offset);
}
+
+void DiveListView::endSearch()
+{
+ searchBox.clear();
+ searchBox.hide();
+}