# HG changeset patch # User IBBoard # Date 1230402743 0 # Node ID 258ef411e698dc5137a7d80ed05d4cf0e5cf852e # Parent d860e2c49f43d191ad4e487d9de561339ce6b5c2 Remove Tag property that has been added in .Net 2.0 no-open-ticket diff -r d860e2c49f43 -r 258ef411e698 Windows/Forms/ColorableStatusBarPanel.cs --- a/Windows/Forms/ColorableStatusBarPanel.cs Fri Dec 19 11:13:48 2008 +0000 +++ b/Windows/Forms/ColorableStatusBarPanel.cs Sat Dec 27 18:32:23 2008 +0000 @@ -13,7 +13,6 @@ //Note: We keep all external references consistant with .Net and use the American spelling of Colour private Color textColour; private SolidBrush brush; - private object tag; public ColorableStatusBarPanel() : base() { @@ -42,15 +41,9 @@ Color = SystemColors.WindowText; } - public object Tag - { - get { return tag; } - set { tag = value; } - } - public string TagString { - get { return (tag == null ? "" : tag.ToString()); } + get { return (Tag == null ? "" : Tag.ToString()); } } } }