Changeset 5222 in ntrip for trunk/BNC


Ignore:
Timestamp:
Jun 16, 2013, 3:34:21 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r5221 r5222  
    429429  _pppGalileoCheckBox->setCheckState(Qt::CheckState(
    430430                                    settings.value("pppGalileo").toInt()));
    431 
    432   _pppPlotCoordinates = new QCheckBox();
    433   _pppPlotCoordinates->setCheckState(Qt::CheckState(
    434                                 settings.value("pppPlotCoordinates").toInt()));
    435431
    436432  connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)),
     
    10391035
    10401036  QHBoxLayout* ppp3LayoutHlp1 = new QHBoxLayout;
     1037  _pppPlotCoordinates = new QCheckBox();
     1038  _pppPlotCoordinates->setCheckState(Qt::CheckState(settings.value("pppPlotCoordinates").toInt()));
    10411039  ppp3LayoutHlp1->addWidget(new QLabel("PPP Plot"));
    10421040  ppp3LayoutHlp1->addWidget(_pppPlotCoordinates);
     
    10541052
    10551053  _gmRadioButton  = new QRadioButton;
     1054  _gmRadioButton->setChecked(!settings.value("useOsmMap").toBool());
    10561055  ppp3LayoutHlp2->addWidget(new QLabel("Google"));
    10571056  ppp3LayoutHlp2->addWidget(_gmRadioButton);
    10581057
    10591058  _osmRadioButton = new QRadioButton;
     1059  _osmRadioButton->setChecked(settings.value("useOsmMap").toBool());
    10601060  ppp3LayoutHlp2->addWidget(new QLabel("OSM"));
    10611061  ppp3LayoutHlp2->addWidget(_osmRadioButton);
Note: See TracChangeset for help on using the changeset viewer.