mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
corrects a pair of conversions. one object oriented, one not.
This commit is contained in:
parent
58cf310971
commit
a7fc407284
2 changed files with 2 additions and 2 deletions
|
|
@ -509,7 +509,7 @@ DefineEngineMethod(PopupMenu, getItemCount, S32, (), , "()")
|
||||||
return object->getItemCount();
|
return object->getItemCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
DefineConsoleMethod(PopupMenu, clearItems, void, (), , "()")
|
DefineEngineMethod(PopupMenu, clearItems, void, (), , "()")
|
||||||
{
|
{
|
||||||
return object->clearItems();
|
return object->clearItems();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,7 @@ public:
|
||||||
TorqueUnitTestListener( bool verbose ) : mVerbose( verbose ) {}
|
TorqueUnitTestListener( bool verbose ) : mVerbose( verbose ) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
DefineConsoleFunction( runAllUnitTests, int, (const char* testSpecs), (""),
|
DefineEngineFunction( runAllUnitTests, int, (const char* testSpecs), (""),
|
||||||
"Runs engine unit tests. Some tests are marked as 'stress' tests which do not "
|
"Runs engine unit tests. Some tests are marked as 'stress' tests which do not "
|
||||||
"necessarily check correctness, just performance or possible nondeterministic "
|
"necessarily check correctness, just performance or possible nondeterministic "
|
||||||
"glitches. There may also be interactive or networking tests which may be "
|
"glitches. There may also be interactive or networking tests which may be "
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue