From a10518607dcc91321174d7100cf4772e41635bf3 Mon Sep 17 00:00:00 2001 From: Gert Driesen Date: Thu, 24 Jul 2008 15:42:09 +0000 Subject: * AssemblyInstaller.cs: Fixed argument name to match MS. * EventLogInstaller.cs: API compatibility fixes for issues reported by corcompare. svn path=/trunk/mcs/; revision=108655 --- .../System.Configuration.Install/AssemblyInstaller.cs | 4 ++-- .../System.Configuration.Install/ChangeLog | 4 ++++ .../System.Configuration.Install/System.Diagnostics/ChangeLog | 5 +++++ .../System.Diagnostics/EventLogInstaller.cs | 9 +++------ 4 files changed, 14 insertions(+), 8 deletions(-) (limited to 'mcs/class/System.Configuration.Install') 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 + + * AssemblyInstaller.cs: Fixed argument name to match MS. + 2008-06-11 Atsushi Enomoto * 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 + + * EventLogInstaller.cs: API compatibility fixes for issues reported + by corcompare. + 2007-09-27 Atsushi Enomoto * 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; } -- cgit v1.2.3