From 1820a56094d5a6e4cd68e8b781d046fe5d297f32 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 5 Jan 2014 11:36:58 +0100 Subject: [PATCH] + Allow access to tab panel of combo view --- src/Gui/Control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/Control.cpp b/src/Gui/Control.cpp index 4a8bebfb11..f5ca988cca 100644 --- a/src/Gui/Control.cpp +++ b/src/Gui/Control.cpp @@ -142,7 +142,7 @@ QTabWidget* ControlSingleton::tabPanel() const (Gui::DockWindowManager::instance()->getDockWindow("Combo View")); // should return the pointer to combo view if (pcCombiView) - pcCombiView->getTabPanel(); + return pcCombiView->getTabPanel(); return 0; }