From aace7bbe4b50d95efacd15e2589609e9de47c3ee Mon Sep 17 00:00:00 2001 From: Atsushi Eno Date: Wed, 11 Jun 2008 11:43:41 +0000 Subject: 2008-06-11 Atsushi Enomoto * Installer.cs : populate 'installers' instance. Fixed bug #397126. svn path=/trunk/mcs/; revision=105566 --- .../System.Configuration.Install/ChangeLog | 4 ++++ .../System.Configuration.Install/Installer.cs | 2 ++ 2 files changed, 6 insertions(+) (limited to 'mcs/class/System.Configuration.Install') 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 + + * Installer.cs : populate 'installers' instance. Fixed bug #397126. + 2007-09-27 Atsushi Enomoto * 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; } } -- cgit v1.2.3