- Timestamp:
- Jan 18, 2009, 10:15:14 AM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnctabledlg.cpp
r1488 r1489 528 528 void bncCasterTableDlg::slotAcceptCasterTable() { 529 529 if (_casterTable) { 530 for (int ir = 0; ir <_casterTable->rowCount(); ir++) {530 for (int ir = _casterTable->rowCount() - 1; ir >= 0 ; ir--) { 531 531 if (_casterTable->isItemSelected(_casterTable->item(ir,0))) { 532 532 emit newCaster(_casterTable->item(ir,0)->text(), -
trunk/BNC/bnctabledlg.h
r1477 r1489 32 32 #include "bncconst.h" 33 33 34 34 class bncCasterTableDlg : public QDialog { 35 35 Q_OBJECT 36 36 … … 44 44 private slots: 45 45 virtual void slotAcceptCasterTable(); 46 virtual void slotWhatsThis CasterTable();46 virtual void slotWhatsThis(); 47 47 48 48 private: 49 49 QTableWidget* _casterTable; 50 QPushButton* _okButton; 51 QPushButton* _closeButton; 52 QPushButton* _whatsThisButton; 50 53 }; 51 54
Note:
See TracChangeset
for help on using the changeset viewer.