| 34 | }; |
| 35 | |
| 36 | ProfileTableModel::ProfileTableModel(QObject *parent) |
| 37 | : QAbstractTableModel(parent), |
| 38 | m_profile(0), |
| 39 | m_sortColumn(COLUMN_GPU_TIME), |
| 40 | m_sortOrder(Qt::DescendingOrder) |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | |
| 45 | void ProfileTableModel::setProfile(trace::Profile* profile) |
nothing calls this directly
no outgoing calls
no test coverage detected