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:
-rw-r--r--mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog4
-rw-r--r--mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs2
2 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog b/mcs/class/System.Configuration.Install/System.Configuration.Install/ChangeLog
index 5edf0bfd9e5..3f2ac5afe3d 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-06-11 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Installer.cs : populate 'installers' instance. Fixed bug #397126.
+
2007-09-27 Atsushi Enomoto <atsushi@ximian.com>
* IManagedInstaller.cs, InstallEventHandler.cs, UninstallAction.cs:
diff --git a/mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs b/mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs
index e0b17d91276..001bb49c0c0 100644
--- a/mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs
+++ b/mcs/class/System.Configuration.Install/System.Configuration.Install/Installer.cs
@@ -64,6 +64,8 @@ namespace System.Configuration.Install
public InstallerCollection Installers {
get {
+ if (installers == null)
+ installers = new InstallerCollection (this);
return installers;
}
}