#At file:///C:/work/wex/installer/ based on revid:reggie.burnett@stripped
200 Reggie Burnett 2010-09-20
removed HasChanges as it was no longer used
modified:
WexInstaller/Core/ProductFeature.cs
WexInstaller/InstallWizard/InstallProgressPanel.cs
=== modified file 'WexInstaller/Core/ProductFeature.cs'
=== modified file 'WexInstaller/Core/ProductFeature.cs'
--- a/WexInstaller/Core/ProductFeature.cs 2010-09-17 18:37:46 +0000
+++ b/WexInstaller/Core/ProductFeature.cs 2010-09-20 19:01:29 +0000
@@ -137,17 +137,6 @@
return sizeEst;
}
- public bool HasChanges
- {
- get
- {
- bool hasChanges = Installed != ProposedInstalled;
- foreach (ProductFeature f in Features)
- hasChanges |= f.HasChanges;
- return hasChanges;
- }
- }
-
public override void SetParent(ProductElement parent)
{
base.SetParent(parent);
=== modified file 'WexInstaller/InstallWizard/InstallProgressPanel.cs'
--- a/WexInstaller/InstallWizard/InstallProgressPanel.cs 2010-09-15 21:17:03 +0000
+++ b/WexInstaller/InstallWizard/InstallProgressPanel.cs 2010-09-20 19:01:29 +0000
@@ -57,7 +57,7 @@
{
foreach (Product p in pc.Products)
{
- if (!p.HasChanges) continue;
+ if (!p.ProposedInstalled) continue;
ListViewItem item = new ListViewItem(p.Title);
item.Name = p.Title;
item.Tag = p;
Attachment: [text/bzr-bundle] bzr/reggie.burnett@oracle.com-20100920190129-7wa92ennktwtbw3m.bundle
| Thread |
|---|
| • bzr commit into wex-installer-1.0 branch (reggie.burnett:200) | Reggie Burnett | 20 Sep |