remove plenty of redundant junk

This commit is contained in:
Chris Forbes
2010-07-14 19:00:03 +12:00
parent 17bf4610f1
commit fed33fdb00
32 changed files with 1184 additions and 1178 deletions

View File

@@ -56,15 +56,16 @@ namespace OpenRA.Widgets
Game.chrome.lineRenderer.Flush();
}
}
public override bool HandleInput(MouseInput mi) { return true; }
public CheckboxWidget() : base() { }
public CheckboxWidget(Widget other)
protected CheckboxWidget(CheckboxWidget other)
: base(other)
{
Text = (other as CheckboxWidget).Text;
Checked = (other as CheckboxWidget).Checked;
Text = other.Text;
Checked = other.Checked;
}
public override Widget Clone() { return new CheckboxWidget(this); }