Switch to unified view

a/src/qtgui/restable.cpp b/src/qtgui/restable.cpp
...
...
366
    if (!stringlowercmp("date", spec.field) || 
366
    if (!stringlowercmp("date", spec.field) || 
367
        !stringlowercmp("datetime", spec.field))
367
        !stringlowercmp("datetime", spec.field))
368
        spec.field = "mtime";
368
        spec.field = "mtime";
369
    spec.desc = order == Qt::AscendingOrder ? false : true;
369
    spec.desc = order == Qt::AscendingOrder ? false : true;
370
    } 
370
    } 
371
    emit sortColumnChanged(spec);
371
    emit sortDataChanged(spec);
372
}
372
}
373
373
374
/////////////////////////// 
374
/////////////////////////// 
375
// ResTable panel methods
375
// ResTable panel methods
376
376