From af3d00836a91f7131364351f71552a5555c96dbb Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 13 Dec 2011 23:48:32 +1300 Subject: [PATCH] remove spurious Clone() from TooltipContainerWidget; all it did was make the error message *worse* --- OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs b/OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs index 68bec20e39..1901bfc5c8 100755 --- a/OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs +++ b/OpenRA.Mods.Cnc/Widgets/TooltipContainerWidget.cs @@ -64,7 +64,5 @@ namespace OpenRA.Mods.Cnc.Widgets } public override string GetCursor(int2 pos) { return null; } - - public override Widget Clone() { throw new NotImplementedException(); } } }