Subversion Repositories svn1

Rev

Rev 386 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 386 Rev 390
Line 237... Line 237...
237
{
237
{
238
    QString tip = "Unexpected value. The NE winners are configured on a per-class basis";
238
    QString tip = "Unexpected value. The NE winners are configured on a per-class basis";
239
 
239
 
240
    for ( int ii = 0; ii < MAX_CLASS; ii++)
240
    for ( int ii = 0; ii < MAX_CLASS; ii++)
241
    {
241
    {
242
        int indexEntry = 0;
242
        //int indexEntry = 0;
243
        QTableWidgetItem *item = tableWidget->item ( ii, COL_INDEX );
243
        QTableWidgetItem *item = tableWidget->item ( ii, COL_INDEX );
244
        const QBrush *goldBrush = new QBrush(QColor(255,204,203));
244
        const QBrush *goldBrush = new QBrush(QColor(255,204,203));
245
 
245
 
246
        if (!item)
246
        if (!item)
247
        {
247
        {
Line 252... Line 252...
252
        {
252
        {
253
            //qDebug("Ignore empty row:%d", entryIndex);
253
            //qDebug("Ignore empty row:%d", entryIndex);
254
            continue;
254
            continue;
255
        }
255
        }
256
 
256
 
257
        indexEntry = item->text().toInt();
257
        //indexEntry = item->text().toInt();
258
        //qDebug("Processing: %d", ii);
258
        //qDebug("Processing: %d", ii);
259
 
259
 
260
        item = tableWidget->item( ii, COL_NE );
260
        item = tableWidget->item( ii, COL_NE );
261
        if ( item )
261
        if ( item )
262
        {
262
        {