| 508 | } |
| 509 | |
| 510 | void RDHeaderView::setPinnedColumns(int numColumns, QAbstractScrollArea *scroll) |
| 511 | { |
| 512 | m_pinnedColumns = numColumns; |
| 513 | QObject::connect(scroll->horizontalScrollBar(), &QScrollBar::valueChanged, |
| 514 | [this]() { viewport()->update(); }); |
| 515 | } |
| 516 | |
| 517 | void RDHeaderView::setRootIndex(const QModelIndex &index) |
| 518 | { |
nothing calls this directly
no test coverage detected