Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / class / System / System.ComponentModel / RecommendedAsConfigurableAttribute.cs
index f0d626c6895d6b151ddb8c20db57714fe8e3e626..5ab1737f095ff28b79f908b1729cfbdc1b08580c 100644 (file)
@@ -35,6 +35,7 @@ using System;
 namespace System.ComponentModel {
 
        [AttributeUsage (AttributeTargets.Property)]
+       [Obsolete ("Use SettingsBindableAttribute instead of RecommendedAsConfigurableAttribute")]
        public class RecommendedAsConfigurableAttribute : Attribute {
 
                #region Fields
@@ -45,7 +46,6 @@ namespace System.ComponentModel {
                public static readonly RecommendedAsConfigurableAttribute No = new RecommendedAsConfigurableAttribute (false);
                public static readonly RecommendedAsConfigurableAttribute Yes = new RecommendedAsConfigurableAttribute (true);
 
-
                #endregion // Fields
 
                #region Constructors
@@ -57,7 +57,6 @@ namespace System.ComponentModel {
 
                #endregion // Constructors
 
-
                #region Properties
 
                public bool RecommendedAsConfigurable {
@@ -66,7 +65,6 @@ namespace System.ComponentModel {
 
                #endregion // Properties
 
-
                #region Methods
 
                public override bool Equals (object obj)
@@ -76,7 +74,6 @@ namespace System.ComponentModel {
                        return ((RecommendedAsConfigurableAttribute) obj).RecommendedAsConfigurable == recommendedAsConfigurable;
                }
 
-
                public override int GetHashCode ()
                {
                        return recommendedAsConfigurable.GetHashCode ();
@@ -90,4 +87,3 @@ namespace System.ComponentModel {
                #endregion // Methods
        }
 }
-