| 51 | } |
| 52 | |
| 53 | QString WizMultiLineListWidget::itemText(const QModelIndex& index, int line) const |
| 54 | { |
| 55 | if (line == 0) |
| 56 | { |
| 57 | return itemFromIndex(index)->text(); |
| 58 | } |
| 59 | // |
| 60 | return QString(); |
| 61 | } |
| 62 | |
| 63 | QColor WizMultiLineListWidget::itemTextColor(const QModelIndex& index, int line, bool selected, QColor defColor) const |
| 64 | { |
no test coverage detected