remove 'private' keyword where possible

This commit is contained in:
Chris Forbes
2011-06-29 09:15:39 +12:00
parent 587b2ef0d1
commit 0e45968573
16 changed files with 27 additions and 34 deletions

View File

@@ -52,7 +52,7 @@ namespace OpenRA.Widgets
get { return rootWidget; }
set { rootWidget = value; }
}
private static Widget rootWidget = new ContainerWidget();
static Widget rootWidget = new ContainerWidget();
public Widget(Widget widget)
{
@@ -401,4 +401,4 @@ namespace OpenRA.Widgets
{
void Init();
}
}
}