فهرست منبع

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

Areloch 9 سال پیش
والد
کامیت
74a2005d15
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  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;
 }
 
 //-----------------------------------------------------------------------------