From f73d6a02a54f68133359fc069b797071f2d058d9 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Mon, 14 Oct 2013 10:47:59 +0200 Subject: [PATCH] Fix warning on return value. --- Gui/DataView/GeoTreeView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gui/DataView/GeoTreeView.cpp b/Gui/DataView/GeoTreeView.cpp index 047e51d93ee..e56ca7b20f1 100644 --- a/Gui/DataView/GeoTreeView.cpp +++ b/Gui/DataView/GeoTreeView.cpp @@ -100,7 +100,7 @@ void GeoTreeView::selectionChangedFromOutside( const QItemSelection &selected, selModel->select(selected, QItemSelectionModel::Select); selModel->blockSignals(false); - return QTreeView::selectionChanged(selected, deselected); + QTreeView::selectionChanged(selected, deselected); } void GeoTreeView::contextMenuEvent( QContextMenuEvent* event ) -- GitLab