Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas N <andreas@mono-cvs.ximian.com>2003-07-02 22:26:12 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-02 22:26:12 +0400
commit94ef21574a030f889477d81e41b2f95f7f656c11 (patch)
tree6faa16554b2cde21f1d7299cec383cf5f1faf756 /mcs/class/System/System.ComponentModel/BrowsableAttribute.cs
parent08dbd6dc1cfdfe7ba7ac2e8fd6640b6e6e720082 (diff)
2003-07-02 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AttributeCollection.cs: Fixed public members * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines * CategoryAttribute.cs: Changed public fields to properties * EnumConverter.cs: Added and implemented missing properties, improved implementation * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug * PropertyDescriptorCollection.cs: Fixed public members * ReferenceConverter.cs: Implementation added * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions * TypeDescriptor.cs: Implementations added svn path=/trunk/mcs/; revision=15875
Diffstat (limited to 'mcs/class/System/System.ComponentModel/BrowsableAttribute.cs')
-rwxr-xr-xmcs/class/System/System.ComponentModel/BrowsableAttribute.cs9
1 files changed, 2 insertions, 7 deletions
diff --git a/mcs/class/System/System.ComponentModel/BrowsableAttribute.cs b/mcs/class/System/System.ComponentModel/BrowsableAttribute.cs
index e6cb5a933a2..80c6685ebfe 100755
--- a/mcs/class/System/System.ComponentModel/BrowsableAttribute.cs
+++ b/mcs/class/System/System.ComponentModel/BrowsableAttribute.cs
@@ -2,8 +2,8 @@
// System.ComponentModel.BrowsableAttribute.cs
//
// Author:
-// Miguel de Icaza (miguel@ximian.com)
-// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+// Miguel de Icaza (miguel@ximian.com)
+// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) Ximian, Inc. http://www.ximian.com
// (C) 2003 Andreas Nahr
@@ -21,10 +21,6 @@ namespace System.ComponentModel {
public static readonly BrowsableAttribute No = new BrowsableAttribute (false);
public static readonly BrowsableAttribute Yes = new BrowsableAttribute (true);
- public BrowsableAttribute ()
- {
- }
-
public BrowsableAttribute (bool browsable)
{
this.browsable = browsable;
@@ -52,7 +48,6 @@ namespace System.ComponentModel {
{
return browsable == BrowsableAttribute.Default.Browsable;
}
-
}
}