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:
authorAtsushi Eno <atsushieno@gmail.com>2008-06-11 15:43:41 +0400
committerAtsushi Eno <atsushieno@gmail.com>2008-06-11 15:43:41 +0400
commitaace7bbe4b50d95efacd15e2589609e9de47c3ee (patch)
tree5d4d175e68a730477b0a1b52a5ad32c175fd5505 /mcs/class/System.Configuration.Install
parenta4075531b587a71caeae3c9922f996a3dc3d07e7 (diff)
2008-06-11 Atsushi Enomoto <atsushi@ximian.com>
* Installer.cs : populate 'installers' instance. Fixed bug #397126. svn path=/trunk/mcs/; revision=105566
Diffstat (limited to 'mcs/class/System.Configuration.Install')
-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;
}
}