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:
authorGert Driesen <drieseng@users.sourceforge.net>2008-07-24 19:42:09 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2008-07-24 19:42:09 +0400
commita10518607dcc91321174d7100cf4772e41635bf3 (patch)
tree9fb1ee7249bb564a6cb21adb939839f9352a5c33 /mcs/class/System.Configuration.Install
parent6e8e5d0b2ff23a7418e8a567d9fca903e00b1804 (diff)
* AssemblyInstaller.cs: Fixed argument name to match MS.
* EventLogInstaller.cs: API compatibility fixes for issues reported by corcompare. svn path=/trunk/mcs/; revision=108655
Diffstat (limited to 'mcs/class/System.Configuration.Install')
-rw-r--r--mcs/class/System.Configuration.Install/System.Configuration.Install/AssemblyInstaller.cs4
-rw-r--r--mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog4
-rw-r--r--mcs/class/System.Configuration.Install/System.Diagnostics/ChangeLog5
-rw-r--r--mcs/class/System.Configuration.Install/System.Diagnostics/EventLogInstaller.cs9
4 files changed, 14 insertions, 8 deletions
diff --git a/mcs/class/System.Configuration.Install/System.Configuration.Install/AssemblyInstaller.cs b/mcs/class/System.Configuration.Install/System.Configuration.Install/AssemblyInstaller.cs
index 5ea5b878d6b..acc776788db 100644
--- a/mcs/class/System.Configuration.Install/System.Configuration.Install/AssemblyInstaller.cs
+++ b/mcs/class/System.Configuration.Install/System.Configuration.Install/AssemblyInstaller.cs
@@ -46,9 +46,9 @@ namespace System.Configuration.Install
_useNewContext = true;
}
- public AssemblyInstaller (string filename, string[] commandLine)
+ public AssemblyInstaller (string fileName, string[] commandLine)
{
- Path = System.IO.Path.GetFullPath (filename);
+ Path = System.IO.Path.GetFullPath (fileName);
_commandLine = commandLine;
_useNewContext = true;
}
diff --git a/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog b/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog
index 3f2ac5afe3d..c9176eb1c04 100644
--- a/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog
+++ b/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog
@@ -1,3 +1,7 @@
+2008-07-24 Gert Driesen <drieseng@users.sourceforge.net>
+
+ * AssemblyInstaller.cs: Fixed argument name to match MS.
+
2008-06-11 Atsushi Enomoto <atsushi@ximian.com>
* Installer.cs : populate 'installers' instance. Fixed bug #397126.
diff --git a/mcs/class/System.Configuration.Install/System.Diagnostics/ChangeLog b/mcs/class/System.Configuration.Install/System.Diagnostics/ChangeLog
index ba11753cad6..2820cbed693 100644
--- a/mcs/class/System.Configuration.Install/System.Diagnostics/ChangeLog
+++ b/mcs/class/System.Configuration.Install/System.Diagnostics/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-24 Gert Driesen <drieseng@users.sourceforge.net>
+
+ * EventLogInstaller.cs: API compatibility fixes for issues reported
+ by corcompare.
+
2007-09-27 Atsushi Enomoto <atsushi@ximian.com>
* PerformanceCounterInstaller.cs, EventLogInstaller.cs :
diff --git a/mcs/class/System.Configuration.Install/System.Diagnostics/EventLogInstaller.cs b/mcs/class/System.Configuration.Install/System.Diagnostics/EventLogInstaller.cs
index a6d0857dd60..412180b1be8 100644
--- a/mcs/class/System.Configuration.Install/System.Diagnostics/EventLogInstaller.cs
+++ b/mcs/class/System.Configuration.Install/System.Diagnostics/EventLogInstaller.cs
@@ -50,9 +50,8 @@ namespace System.Diagnostics
}
[MonoTODO]
- // in MSDN, documented as System.Diagnostics.Design.StringValueConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
[Editor ("System.Windows.Forms.Design.FileNameEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing )]
- [TypeConverter (typeof (StringConverter))]
+ [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
[ComVisible (false)]
public string CategoryResourceFile {
get { return _categoryResourceFile; }
@@ -60,9 +59,8 @@ namespace System.Diagnostics
}
[MonoTODO]
- // in MSDN, documented as System.Diagnostics.Design.StringValueConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
[Editor ("System.Windows.Forms.Design.FileNameEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing )]
- [TypeConverter (typeof (StringConverter))]
+ [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
[ComVisible (false)]
public string MessageResourceFile {
get { return _messageResourceFile; }
@@ -70,9 +68,8 @@ namespace System.Diagnostics
}
[MonoTODO]
- // in MSDN, documented as System.Diagnostics.Design.StringValueConverter, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
[Editor ("System.Windows.Forms.Design.FileNameEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing )]
- [TypeConverter (typeof (StringConverter))]
+ [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
[ComVisible (false)]
public string ParameterResourceFile {
get { return _parameterResourceFile; }