Changeset 4337 in ntrip for trunk/BNC/src/rinex/graphwin.cpp


Ignore:
Timestamp:
Jun 24, 2012, 11:12:20 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 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}
Note: See TracChangeset for help on using the changeset viewer.