| Line 79... |
Line 79... |
| 79 |
connect(ui->pushButtonRestore, SIGNAL(clicked()), this, SLOT(cancel()) );
|
79 |
connect(ui->pushButtonRestore, SIGNAL(clicked()), this, SLOT(cancel()) );
|
| 80 |
connect(ui->teamNumber, SIGNAL(valueChanged(int)), this, SLOT(populate(int)) );
|
80 |
connect(ui->teamNumber, SIGNAL(valueChanged(int)), this, SLOT(populate(int)) );
|
| 81 |
|
81 |
|
| 82 |
connect(ui->name, SIGNAL(editingFinished()), this, SLOT(changed()));
|
82 |
connect(ui->name, SIGNAL(editingFinished()), this, SLOT(changed()));
|
| 83 |
connect(ui->category , SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
83 |
connect(ui->category , SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
| - |
|
84 |
connect(ui->category , SIGNAL(currentIndexChanged(int)), this, SLOT(updateCategory()));
|
| 84 |
connect(ui->members , SIGNAL(cellChanged(int,int)), this, SLOT(changed()));
|
85 |
connect(ui->members , SIGNAL(cellChanged(int,int)), this, SLOT(changed()));
|
| 85 |
connect(ui->disqualified , SIGNAL(clicked(bool)), this, SLOT(changed()));
|
86 |
connect(ui->disqualified , SIGNAL(clicked(bool)), this, SLOT(changed()));
|
| 86 |
connect(ui->nonEquestrian , SIGNAL(clicked(bool)), this, SLOT(changed()));
|
87 |
connect(ui->nonEquestrian , SIGNAL(clicked(bool)), this, SLOT(changed()));
|
| 87 |
connect(ui->disabled , SIGNAL(clicked(bool)), this, SLOT(changed()));
|
88 |
connect(ui->disabled , SIGNAL(clicked(bool)), this, SLOT(changed()));
|
| 88 |
|
89 |
|
| Line 219... |
Line 220... |
| 219 |
|
220 |
|
| 220 |
updateChanged(false);
|
221 |
updateChanged(false);
|
| 221 |
populating = false;
|
222 |
populating = false;
|
| 222 |
}
|
223 |
}
|
| 223 |
|
224 |
|
| - |
|
225 |
void qmTeamDisplay::updateCategory(void)
|
| - |
|
226 |
{
|
| - |
|
227 |
ui->category_abr->setText( config.team_class[ui->category->currentIndex()].abr );
|
| - |
|
228 |
}
|
| - |
|
229 |
|
| 224 |
/*----------------------------------------------------------------------------
|
230 |
/*----------------------------------------------------------------------------
|
| 225 |
** FUNCTION : recalculateTimes
|
231 |
** FUNCTION : recalculateTimes
|
| 226 |
**
|
232 |
**
|
| 227 |
** DESCRIPTION : Recalculate and update all the times for the legs
|
233 |
** DESCRIPTION : Recalculate and update all the times for the legs
|
| 228 |
**
|
234 |
**
|