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-17 15:21:03 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-17 15:21:03 +0400
commit2915b7221f50b465e306776983f589eb72731076 (patch)
tree41cd1f272cb2f6f26f945aaa7b618b4eaa3206de /mcs/class/System/System.Collections.Specialized
parent30e02818e6b4ea10acf07c7e3984466f9e73ff7c (diff)
2003-07-17 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* StringDictionary.cs: Reworked attributes based on the new Consts scheme svn path=/trunk/mcs/; revision=16336
Diffstat (limited to 'mcs/class/System/System.Collections.Specialized')
-rwxr-xr-xmcs/class/System/System.Collections.Specialized/ChangeLog4
-rw-r--r--mcs/class/System/System.Collections.Specialized/StringDictionary.cs8
2 files changed, 6 insertions, 6 deletions
diff --git a/mcs/class/System/System.Collections.Specialized/ChangeLog b/mcs/class/System/System.Collections.Specialized/ChangeLog
index 4df2475ccf9..8cc984475b9 100755
--- a/mcs/class/System/System.Collections.Specialized/ChangeLog
+++ b/mcs/class/System/System.Collections.Specialized/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-17 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+ * StringDictionary.cs: Reworked attributes based on the new Consts scheme
+
2003-07-10 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* NameObjectCollectionBase.cs: Implemented a few missing methods, fixed public signatures
diff --git a/mcs/class/System/System.Collections.Specialized/StringDictionary.cs b/mcs/class/System/System.Collections.Specialized/StringDictionary.cs
index 78f4244d9ca..afa1c1d9137 100644
--- a/mcs/class/System/System.Collections.Specialized/StringDictionary.cs
+++ b/mcs/class/System/System.Collections.Specialized/StringDictionary.cs
@@ -11,12 +11,8 @@ using System.ComponentModel.Design.Serialization;
namespace System.Collections.Specialized
{
-#if (NET_1_0)
- [DesignerSerializer ("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
-#endif
-#if (NET_1_1)
- [DesignerSerializer ("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
-#endif
+
+ [DesignerSerializer ("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design)]
public class StringDictionary : IEnumerable
{
private Hashtable table;