Browse Source

Fixes mistake where GuiInspectorEntityGroup's onAdd doesn't explicitly return true, which can cause problems in some compilers.

Areloch 9 years ago
parent
commit
74a2005d15
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Engine/source/gui/editor/inspector/entityGroup.cpp

+ 2 - 0
Engine/source/gui/editor/inspector/entityGroup.cpp

@@ -41,6 +41,8 @@ bool GuiInspectorEntityGroup::onAdd()
 {
    if (!Parent::onAdd())
       return false;
+
+   return true;
 }
 
 //-----------------------------------------------------------------------------