Changeset 1489 in ntrip


Ignore:
Timestamp:
Jan 18, 2009, 10:15:14 AM (15 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnctabledlg.cpp

    r1488 r1489  
    528528void bncCasterTableDlg::slotAcceptCasterTable() {
    529529  if (_casterTable) {
    530     for (int ir = 0; ir < _casterTable->rowCount(); ir++) {
     530    for (int ir = _casterTable->rowCount() - 1; ir >= 0 ; ir--) {
    531531      if (_casterTable->isItemSelected(_casterTable->item(ir,0))) {
    532532        emit newCaster(_casterTable->item(ir,0)->text(),
  • trunk/BNC/bnctabledlg.h

    r1477 r1489  
    3232#include "bncconst.h"
    3333
    34   class bncCasterTableDlg : public QDialog {
     34class bncCasterTableDlg : public QDialog {
    3535  Q_OBJECT
    3636
     
    4444  private slots:
    4545    virtual void slotAcceptCasterTable();
    46     virtual void slotWhatsThisCasterTable();
     46    virtual void slotWhatsThis();
    4747
    4848  private:
    4949    QTableWidget* _casterTable;
     50    QPushButton*  _okButton;
     51    QPushButton*  _closeButton;
     52    QPushButton*  _whatsThisButton;
    5053};
    5154
Note: See TracChangeset for help on using the changeset viewer.