Changeset 4076 in ntrip


Ignore:
Timestamp:
Apr 28, 2012, 1:55:10 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r4070 r4076  
    15251525}
    15261526
    1527 // Save Options
     1527// Save Options (serialize)
    15281528////////////////////////////////////////////////////////////////////////////
    15291529void bncWindow::slotSaveOptions() {
     1530  saveOptions();
     1531  bncSettings settings;
     1532  settings.sync();
     1533}
     1534
     1535// Save Options (memory only)
     1536////////////////////////////////////////////////////////////////////////////
     1537void bncWindow::saveOptions() {
    15301538
    15311539  QStringList mountPoints;
     
    17371745////////////////////////////////////////////////////////////////////////////
    17381746void bncWindow::slotStart() {
    1739   slotSaveOptions();
     1747  saveOptions();
    17401748  if      ( _pppSPPComboBox->currentText() == "Post-Processing" ) {
    17411749    startPostProcessingPPP();
     
    18411849  else if (iRet == QMessageBox::Yes) {
    18421850    slotSaveOptions();
    1843     bncSettings settings;
    1844     settings.sync();
    18451851  }
    18461852
     
    24922498  enableStartStop();
    24932499
    2494   slotSaveOptions();
    2495 
    24962500  t_postProcessing* postProcessing = new t_postProcessing(this);
    24972501  connect(postProcessing, SIGNAL(finished()), this, SLOT(slotFinishedPostProcessingPPP()));
  • trunk/BNC/bncwindow.h

    r3892 r4076  
    9696
    9797  private:
     98    void saveOptions();
    9899    void populateMountPointsTable();
    99100    void populateCmbTable();
Note: See TracChangeset for help on using the changeset viewer.