Xamarin-4959: Fix copy of clipboard data after app exits
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / LinkLabelLinkClickedEventArgs.cs
index f7dde22427233cbbc6b7aa229facae09022b0813..0042508a6434983091de377350aedf29ebf9fad2 100644 (file)
@@ -31,20 +31,15 @@ namespace System.Windows.Forms
        [ComVisible(true)]
        public class LinkLabelLinkClickedEventArgs : EventArgs 
        {
-#if NET_2_0
                private MouseButtons button;
-#endif
                private LinkLabel.Link link;
 
                public LinkLabelLinkClickedEventArgs (LinkLabel.Link link)
                {
-#if NET_2_0
                        this.button = MouseButtons.Left;
-#endif
                        this.link = link;
                }
 
-#if NET_2_0
                public LinkLabelLinkClickedEventArgs (LinkLabel.Link link, MouseButtons button)
                {
                        this.button = button;
@@ -54,7 +49,6 @@ namespace System.Windows.Forms
                public MouseButtons Button {
                        get { return this.button; }
                }
-#endif
 
                public LinkLabel.Link Link {
                        get { return link; }