Changeset 11687


Ignore:
Timestamp:
2006-04-21T16:20:38+12:00 (18 years ago)
Author:
mdewsnip
Message:

Now only offers to install Netscape if "OfferNetscape:1" is in the install.cfg file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsinstaller/gsinstall.cpp

    r11664 r11687  
    7070public:
    7171  bool installExe;
     72  bool offerNetscape;
    7273
    7374  GSInstall(bool uninstall);
     
    119120  this->collectPath = NULL;
    120121  this->installExe = true; // we must install the exe files
     122  this->offerNetscape = (this->configFile->getString("OfferNetscape") == "1");
    121123
    122124  // don't attempt this with windows 3.1
     
    10551057
    10561058        // do further actions
    1057         install.installNetscape();
     1059        if (install.offerNetscape == true) {
     1060          install.installNetscape();
     1061        }
    10581062          }
    10591063    }
Note: See TracChangeset for help on using the changeset viewer.