Apply consistent widget method names. Semantic change: Widgets that want to tick when !Visible must override TickOuter() instead of Tick().

This commit is contained in:
Paul Chote
2011-07-04 03:21:39 +12:00
parent 193999a040
commit 1114293035
41 changed files with 96 additions and 109 deletions

View File

@@ -37,7 +37,7 @@ namespace OpenRA
{
Sync.CheckSyncUnchanged( world, () =>
{
Widget.HandleKeyPress( input );
Widget.DoHandleKeyPress( input );
} );
}
@@ -45,7 +45,7 @@ namespace OpenRA
{
Sync.CheckSyncUnchanged( world, () =>
{
Widget.HandleInput( input );
Widget.DoHandleInput( input );
} );
}
}