* Four more warnings bite the dust.

This commit is contained in:
Adam Frisby
2008-03-05 21:50:58 +00:00
parent 14b37533aa
commit 4d9ed39444
3 changed files with 6 additions and 6 deletions

View File

@@ -197,14 +197,14 @@ namespace SimpleApp
#region conscmd_callback Members
public void RunCmd(string cmd, string[] cmdparams)
public override void RunCmd(string cmd, string[] cmdparams)
{
throw new Exception("The method or operation is not implemented.");
base.RunCmd(cmd, cmdparams);
}
public void Show(string ShowWhat)
public override void Show(string ShowWhat)
{
throw new Exception("The method or operation is not implemented.");
base.Show(ShowWhat);
}
#endregion