- Timestamp:
- Mar 21, 2009, 4:58:52 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncsettings.cpp
r1636 r1769 23 23 // Constructor 24 24 //////////////////////////////////////////////////////////////////////////// 25 bncSettings::bncSettings( ) :25 bncSettings::bncSettings(bool noInit) : 26 26 QSettings(((bncApp*) qApp)->confFileName(), QSettings::IniFormat) { 27 27 28 if ( allKeys().size() == 0) {28 if (! noInit && allKeys().size() == 0) { 29 29 setValue("adviseFail", "15"); 30 30 setValue("adviseReco", "5"); -
trunk/BNC/bncsettings.h
r1535 r1769 6 6 class bncSettings : public QSettings { 7 7 public: 8 bncSettings( );8 bncSettings(bool noInit = false); 9 9 virtual ~bncSettings() {}; 10 10 private:
Note:
See TracChangeset
for help on using the changeset viewer.