mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 16:25:42 +00:00
Merge pull request #1196 from brakhane/scrollVisible-missing-return
Confirmed that this is needed to compile and fixes the problem.
This commit is contained in:
commit
a7740bc587
1 changed files with 1 additions and 1 deletions
|
|
@ -4924,7 +4924,7 @@ DefineEngineMethod( GuiTreeViewCtrl, scrollVisible, bool, ( S32 itemID), ,
|
||||||
"@param itemID TreeItemId of item to scroll to/make visible.\n"
|
"@param itemID TreeItemId of item to scroll to/make visible.\n"
|
||||||
"@return True if it was successful, false if not.")
|
"@return True if it was successful, false if not.")
|
||||||
{
|
{
|
||||||
object->scrollVisible(itemID);
|
return object->scrollVisible(itemID);
|
||||||
}
|
}
|
||||||
|
|
||||||
DefineEngineMethod( GuiTreeViewCtrl, buildIconTable, bool, ( const char* icons), ,
|
DefineEngineMethod( GuiTreeViewCtrl, buildIconTable, bool, ( const char* icons), ,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue