| 474 | } |
| 475 | |
| 476 | QWidget* ExpandingWidgetModel::expandingWidget(const QModelIndex& idx_) const |
| 477 | { |
| 478 | QModelIndex idx(firstColumn(idx_)); |
| 479 | |
| 480 | const auto widgetIt = m_expandingWidgets.find(idx); |
| 481 | if (widgetIt != m_expandingWidgets.end()) { |
| 482 | return *widgetIt; |
| 483 | } else { |
| 484 | return nullptr; |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | QList<QVariant> mergeCustomHighlighting(int leftSize, const QList<QVariant>& left, int rightSize, const QList<QVariant>& right) |
| 489 | { |
no test coverage detected