From ab2cc10ac757dd04062878d0a882c875dc6dc176 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Tr=C3=B6ger?= Date: Wed, 3 Jun 2015 16:06:19 +0200 Subject: [PATCH] add missing return value --- src/Mod/PartDesign/Gui/ViewProviderPipe.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/PartDesign/Gui/ViewProviderPipe.cpp b/src/Mod/PartDesign/Gui/ViewProviderPipe.cpp index 60b2bb873..6f10ae08e 100644 --- a/src/Mod/PartDesign/Gui/ViewProviderPipe.cpp +++ b/src/Mod/PartDesign/Gui/ViewProviderPipe.cpp @@ -140,8 +140,8 @@ bool ViewProviderPipe::onDelete(const std::vector &s) // if abort command deleted the object the sketch is visible again if (pcSketch && Gui::Application::Instance->getViewProvider(pcSketch)) Gui::Application::Instance->getViewProvider(pcSketch)->show(); - - return ViewProvider::onDelete(s);*/ +*/ + return ViewProvider::onDelete(s); }