return the result value of scrollVisible

The console function changed from void to bool, so we
should actually return the value.

Also, the missing return is an error in VS2013.
This commit is contained in:
Dennis Brakhane 2015-02-14 17:18:29 +01:00
parent 7992865525
commit b580b4a542

View file

@ -4924,7 +4924,7 @@ DefineEngineMethod( GuiTreeViewCtrl, scrollVisible, bool, ( S32 itemID), ,
"@param itemID TreeItemId of item to scroll to/make visible.\n"
"@return True if it was successful, false if not.")
{
object->scrollVisible(itemID);
return object->scrollVisible(itemID);
}
DefineEngineMethod( GuiTreeViewCtrl, buildIconTable, bool, ( const char* icons), ,