Changeset 1769 in ntrip


Ignore:
Timestamp:
Mar 21, 2009, 4:58:52 PM (15 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncsettings.cpp

    r1636 r1769  
    2323// Constructor
    2424////////////////////////////////////////////////////////////////////////////
    25 bncSettings::bncSettings() :
     25bncSettings::bncSettings(bool noInit) :
    2626  QSettings(((bncApp*) qApp)->confFileName(), QSettings::IniFormat) {
    2727
    28   if (allKeys().size() == 0) {
     28  if (! noInit && allKeys().size() == 0) {
    2929    setValue("adviseFail",       "15");
    3030    setValue("adviseReco",       "5");
  • trunk/BNC/bncsettings.h

    r1535 r1769  
    66class bncSettings : public QSettings {
    77 public:
    8   bncSettings();
     8  bncSettings(bool noInit = false);
    99  virtual ~bncSettings() {};
    1010 private:
Note: See TracChangeset for help on using the changeset viewer.