fixed line-endings on *.cs

This commit is contained in:
Bob
2010-03-22 19:28:37 +12:00
parent 15813b04a8
commit dca15cadb9
20 changed files with 944 additions and 944 deletions

View File

@@ -16,22 +16,22 @@
* You should have received a copy of the GNU General Public License
* along with OpenRA. If not, see <http://www.gnu.org/licenses/>.
*/
#endregion
#endregion
using OpenRA.Graphics;
using System.Drawing;
namespace OpenRA.Widgets
{
class CheckboxWidget : Widget
{
public override void Draw()
{
if (!Visible)
{
base.Draw();
return;
}
namespace OpenRA.Widgets
{
class CheckboxWidget : Widget
{
public override void Draw()
{
if (!Visible)
{
base.Draw();
return;
}
var selected = InputHandler.Value != null ? InputHandler.Value.GetState(this) : false;
@@ -47,9 +47,9 @@ namespace OpenRA.Widgets
Bounds.Height - 9),
Color.White);
Game.chrome.lineRenderer.Flush();
}
base.Draw();
}
}
}
base.Draw();
}
}
}