Changeset 3740 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Mar 28, 2012, 12:15:46 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3739 r3740  
    6262#include "upload/bncephuploadcaster.h"
    6363#include "qtfilechooser.h"
     64#include "teqcdlg.h"
    6465#ifdef USE_POSTPROCESSING
    6566#  include "rinex/bncpostprocess.h"
     
    10031004
    10041005  teqcgroup->setLayout(teqcLayout);
     1006
     1007  connect(_teqcEditOptionButton, SIGNAL(clicked()),
     1008          this, SLOT(slotTeqcEditOption()));
    10051009
    10061010  // Combination
     
    23972401}
    23982402
     2403// Edit teqc-like editing options
     2404////////////////////////////////////////////////////////////////////////////
     2405void bncWindow::slotTeqcEditOption() {
     2406  teqcDlg* dlg = new teqcDlg(this);
     2407  dlg->move(this->pos().x()+50, this->pos().y()+50);
     2408  dlg->exec();
     2409  delete dlg;
     2410}
Note: See TracChangeset for help on using the changeset viewer.