Subversion Repositories svn1-original

Rev

Rev 214 | Rev 229 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 214 Rev 219
Line 87... Line 87...
87
    connect(ui->nonEquestrian , SIGNAL(clicked(bool)), this, SLOT(changed()));
87
    connect(ui->nonEquestrian , SIGNAL(clicked(bool)), this, SLOT(changed()));
88
    connect(ui->disabled , SIGNAL(clicked(bool)), this, SLOT(changed()));
88
    connect(ui->disabled , SIGNAL(clicked(bool)), this, SLOT(changed()));
89
 
89
 
90
    updateChanged(false);
90
    updateChanged(false);
91
    populating = false;
91
    populating = false;
-
 
92
    populate(config.min_team);
92
}
93
}
93
 
94
 
94
/*----------------------------------------------------------------------------
95
/*----------------------------------------------------------------------------
95
** FUNCTION           : ~qmTeamDisplay
96
** FUNCTION           : ~qmTeamDisplay
96
**
97
**
Line 126... Line 127...
126
    **  Update the spinner that describes the current team number
127
    **  Update the spinner that describes the current team number
127
    */
128
    */
128
    populating = true;
129
    populating = true;
129
 
130
 
130
    ui->teamNumber->setMaximum(config.max_team);
131
    ui->teamNumber->setMaximum(config.max_team);
-
 
132
    ui->teamNumber->setMinimum(config.min_team);
131
    ui->teamNumber->setValue(team_number);
133
    ui->teamNumber->setValue(team_number);
132
    team = team_number;
134
    team = team_number;
133
 
135
 
134
    /*
136
    /*
135
    **  Read in team data
137
    **  Read in team data
Line 338... Line 340...
338
//qDebug ("Changed");
340
//qDebug ("Changed");
339
}
341
}
340
 
342
 
341
void qmTeamDisplay::updateChanged(bool newDirty)
343
void qmTeamDisplay::updateChanged(bool newDirty)
342
{
344
{
-
 
345
    //qDebug("updateChanged: %d -> %d", newDirty, dirty);
343
    if (newDirty != dirty)
346
    if (newDirty != dirty)
344
    {
347
    {
345
        dirty = newDirty;
348
        dirty = newDirty;
346
        if (dirty)
349
        if (dirty)
347
        {
350
        {