Changeset 2967 in ntrip
- Timestamp:
- Feb 4, 2011, 11:56:03 AM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncpppclient.cpp ¶
r2966 r2967 90 90 this, SIGNAL(newNMEAstr(QByteArray))); 91 91 92 _pppCorrMount point= settings.value("pppCorrMountpoint").toString();92 _pppCorrMount = settings.value("pppCorrMount").toString(); 93 93 } 94 94 … … 265 265 // Check the Mountpoint (source of corrections) 266 266 // -------------------------------------------- 267 if (_pppCorrMount point.isEmpty() ) {267 if (_pppCorrMount.isEmpty() ) { 268 268 QMutableListIterator<QString> itm(corrList); 269 269 while (itm.hasNext()) { … … 271 271 if (hlp.size() > 0) { 272 272 QString mountpoint = hlp[hlp.size()-1]; 273 if (mountpoint != _pppCorrMount point) {273 if (mountpoint != _pppCorrMount) { 274 274 itm.remove(); 275 275 } -
TabularUnified trunk/BNC/bncpppclient.h ¶
r2966 r2967 154 154 bool _pppMode; 155 155 QMap<QString, slipInfo> _slips; 156 QString _pppCorrMount point;156 QString _pppCorrMount; 157 157 }; 158 158 -
TabularUnified trunk/BNC/bncwindow.cpp ¶
r2965 r2967 338 338 // ----------- 339 339 _pppMountLineEdit = new QLineEdit(settings.value("pppMount").toString()); 340 _pppCorrMountLineEdit = new QLineEdit(settings.value("pppCorrMount").toString()); 340 341 _pppNMEALineEdit = new QLineEdit(settings.value("nmeaFile").toString()); 341 342 _pppNMEAPortLineEdit = new QLineEdit(settings.value("nmeaPort").toString()); … … 385 386 386 387 connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)), 388 this, SLOT(slotBncTextChanged())); 389 390 connect(_pppCorrMountLineEdit, SIGNAL(textChanged(const QString &)), 387 391 this, SLOT(slotBncTextChanged())); 388 392 … … 768 772 _pppSPPComboBox->setMaximumWidth(8*ww); 769 773 _pppNMEAPortLineEdit->setMaximumWidth(6*ww); 774 _pppCorrMountLineEdit->setMaximumWidth(5*ww); 770 775 pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0); 771 776 pppLayout->addWidget(_pppMountLineEdit, 0, 1); … … 800 805 pppLayout->addWidget(_pppNMEAPortLineEdit, 3, 5, Qt::AlignRight); 801 806 pppLayout->addWidget(new QLabel("Port"), 3, 6); 807 pppLayout->addWidget(_pppCorrMountLineEdit, 3, 7); 808 pppLayout->addWidget(new QLabel("Corr Mountpoint"), 3, 8, Qt::AlignLeft); 802 809 pppLayout->addWidget(new QLabel("Coordinates from Precise Point Positioning (PPP)."),4, 0,1,5); 803 810 pppLayout->addWidget(new QLabel(" "), 5, 0); … … 1211 1218 settings.setValue("miscMount", _miscMountLineEdit->text()); 1212 1219 settings.setValue("pppMount", _pppMountLineEdit->text()); 1220 settings.setValue("pppCorrMount",_pppCorrMountLineEdit->text()); 1213 1221 settings.setValue("pppSPP", _pppSPPComboBox->currentText()); 1214 1222 settings.setValue("nmeaFile", _pppNMEALineEdit->text()); … … 1785 1793 if (sender() == 0 1786 1794 || sender() == _pppMountLineEdit 1795 || sender() == _pppCorrMountLineEdit 1787 1796 || sender() == _pppRefCrdXLineEdit 1788 1797 || sender() == _pppRefCrdYLineEdit -
TabularUnified trunk/BNC/bncwindow.h ¶
r2950 r2967 117 117 QLineEdit* _miscMountLineEdit; 118 118 QLineEdit* _pppMountLineEdit; 119 QLineEdit* _pppCorrMountLineEdit; 119 120 QLineEdit* _pppNMEALineEdit; 120 121 QLineEdit* _pppNMEAPortLineEdit;
Note:
See TracChangeset
for help on using the changeset viewer.