This method should never have taken a parameter

This commit is contained in:
Michael Becker 2015-09-25 23:07:01 -04:00
parent e1f7c7dae7
commit 00dd6e66f6

View File

@ -404,7 +404,7 @@ namespace UniversalEditor.Engines.WindowsForms
{
wndOutputWindow.AppendText(text);
}
private void _ClearText(string text)
private void _ClearText()
{
wndOutputWindow.ClearText();
}
@ -420,7 +420,7 @@ namespace UniversalEditor.Engines.WindowsForms
{
if (wndOutputWindow != null)
{
wndOutputWindow.Invoke(new Action<string>(_ClearText));
wndOutputWindow.Invoke(new Action(_ClearText));
}
}