From 3d00535d5770ee3e4de9514ad2564286f49a597d Mon Sep 17 00:00:00 2001 From: jriegel Date: Fri, 19 Sep 2014 11:03:35 +0200 Subject: [PATCH] FreeCAD-VR: Small fix for older compilers --- src/Gui/View3DInventor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/View3DInventor.cpp b/src/Gui/View3DInventor.cpp index 1d44f3b00..153cf3402 100644 --- a/src/Gui/View3DInventor.cpp +++ b/src/Gui/View3DInventor.cpp @@ -736,7 +736,7 @@ bool View3DInventor::onHasMsg(const char* pMsg) const else if(strcmp("ViewVR",pMsg) == 0) #ifdef BUILD_VR return true; -#elif +#else return false; #endif else if(strcmp("ViewSelection",pMsg) == 0)