Changeset 4337 in ntrip


Ignore:
Timestamp:
Jun 24, 2012, 11:12:20 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/graphwin.cpp

    r4330 r4337  
    5959  // Buttons
    6060  // -------
    61   _buttonOK = new QPushButton(tr("OK"), this);
    62   _buttonOK->setMaximumWidth(10*ww);
    63   connect(_buttonOK, SIGNAL(clicked()), this, SLOT(slotOK()));
     61  _buttonClose = new QPushButton(tr("Close"), this);
     62  _buttonClose->setMaximumWidth(10*ww);
     63  connect(_buttonClose, SIGNAL(clicked()), this, SLOT(slotClose()));
    6464
    6565  // Color Scale
     
    9191
    9292  QHBoxLayout* buttonLayout = new QHBoxLayout;
    93   buttonLayout->addWidget(_buttonOK);
     93  buttonLayout->addWidget(_buttonClose);
    9494
    9595  QVBoxLayout* mainLayout = new QVBoxLayout(this);
     
    101101////////////////////////////////////////////////////////////////////////////
    102102t_graphWin::~t_graphWin() {
    103   delete _buttonOK;
    104103}
    105104
    106105// Accept the Options
    107106////////////////////////////////////////////////////////////////////////////
    108 void t_graphWin::slotOK() {
     107void t_graphWin::slotClose() {
    109108  done(0);
    110109}
  • trunk/BNC/src/rinex/graphwin.h

    r4329 r4337  
    5757
    5858 private slots:
    59   void slotOK();
     59  void slotClose();
    6060
    6161 protected:
     
    6363
    6464 private:
    65   QPushButton*    _buttonOK;
     65  QPushButton*    _buttonClose;
    6666  QwtScaleWidget* _colorScale;
    6767};
Note: See TracChangeset for help on using the changeset viewer.