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:
authorMiguel de Icaza <miguel@gnome.org>2003-11-23 03:06:53 +0300
committerMiguel de Icaza <miguel@gnome.org>2003-11-23 03:06:53 +0300
commitf9b908cd24fea46b586802261b0ad5dc7b1afc5a (patch)
treefe848ae8d5413f0a98445fd1e41aa951098acbe7 /mcs/class/System/System.ComponentModel
parent4279c0c1ea64e8d83b84482c352e16dce1d7b852 (diff)
2003-11-22 Miguel de Icaza <miguel@ximian.com>
* PropertyDescriptorCollection.cs (Insert): Another one. svn path=/trunk/mcs/; revision=20346
Diffstat (limited to 'mcs/class/System/System.ComponentModel')
-rw-r--r--mcs/class/System/System.ComponentModel/ChangeLog2
-rw-r--r--mcs/class/System/System.ComponentModel/PropertyDescriptorCollection.cs3
2 files changed, 4 insertions, 1 deletions
diff --git a/mcs/class/System/System.ComponentModel/ChangeLog b/mcs/class/System/System.ComponentModel/ChangeLog
index 241a935db27..572e5b319b4 100644
--- a/mcs/class/System/System.ComponentModel/ChangeLog
+++ b/mcs/class/System/System.ComponentModel/ChangeLog
@@ -1,5 +1,7 @@
2003-11-22 Miguel de Icaza <miguel@ximian.com>
+ * PropertyDescriptorCollection.cs (Insert): Another one.
+
* PropertyTabAttribute.cs (Equals): Avoid recurssion
2003-11-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
diff --git a/mcs/class/System/System.ComponentModel/PropertyDescriptorCollection.cs b/mcs/class/System/System.ComponentModel/PropertyDescriptorCollection.cs
index 6962cfe79e1..0bc8e330a14 100644
--- a/mcs/class/System/System.ComponentModel/PropertyDescriptorCollection.cs
+++ b/mcs/class/System/System.ComponentModel/PropertyDescriptorCollection.cs
@@ -114,7 +114,8 @@ namespace System.ComponentModel
}
public void Insert (int index, PropertyDescriptor value)
- { Insert (index, value);
+ {
+ properties.Insert (index, value);
}
void IList.Insert (int index, object value)