ImageList.cs: Use attribute constructors with less arguments where possible.
authorKornél Pál <kornelpal@gmail.com>
Sun, 23 Oct 2005 01:22:36 +0000 (01:22 -0000)
committerKornél Pál <kornelpal@gmail.com>
Sun, 23 Oct 2005 01:22:36 +0000 (01:22 -0000)
svn path=/trunk/mcs/; revision=52072

mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms/ImageList.cs

index 06e52707305120b8d6eebf977180780c811fb998..a0a3551da1b58559ff568f394d7d640a0555a1e7 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
+
+       * ImageList.cs: Use attribute constructors with less arguments where
+         possible.
+
 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
 
        * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
index bff8cb54e34fa2ead85fd8abd87aba8ba114e7f8..d5f5a1f896be53163c1d9bd51aa67f5ec3d8470d 100644 (file)
@@ -77,11 +77,11 @@ using System.Runtime.InteropServices;
 namespace System.Windows.Forms
 {
        [DefaultProperty("Images")]
-       [Designer("System.Windows.Forms.Design.ImageListDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
+       [Designer("System.Windows.Forms.Design.ImageListDesigner, " + Consts.AssemblySystem_Design)]
 #if NET_2_0
        [DesignerSerializer("System.Windows.Forms.Design.ImageListCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design)]
 #endif
-       [ToolboxItemFilter("System.Windows.Forms", ToolboxItemFilterType.Allow)]
+       [ToolboxItemFilter("System.Windows.Forms")]
        [TypeConverter(typeof(ImageListConverter))]
        public sealed class ImageList : System.ComponentModel.Component
        {