Remove constructor base() redundancies

This commit is contained in:
ScottNZ
2013-11-12 17:31:55 +13:00
parent 7c5f3cc0f1
commit 86a3e14f2d
32 changed files with 20 additions and 34 deletions

View File

@@ -446,7 +446,7 @@ namespace OpenRA.Widgets
public class ContainerWidget : Widget
{
public ContainerWidget() : base() { IgnoreMouseOver = true; }
public ContainerWidget() { IgnoreMouseOver = true; }
public ContainerWidget(ContainerWidget other)
: base(other) { IgnoreMouseOver = true; }
@@ -458,7 +458,7 @@ namespace OpenRA.Widgets
public class WidgetArgs : Dictionary<string, object>
{
public WidgetArgs() : base() { }
public WidgetArgs() { }
public WidgetArgs(Dictionary<string, object> args) : base(args) { }
public void Add(string key, Action val) { base.Add(key, val); }
}