| 191 | } |
| 192 | |
| 193 | int RDHeaderView::sectionSize(int logicalIndex) const |
| 194 | { |
| 195 | if(m_customSizing) |
| 196 | { |
| 197 | if(logicalIndex < 0 || logicalIndex >= m_sections.count()) |
| 198 | return 0; |
| 199 | |
| 200 | return m_sections[logicalIndex].size; |
| 201 | } |
| 202 | |
| 203 | return QHeaderView::sectionSize(logicalIndex); |
| 204 | } |
| 205 | |
| 206 | int RDHeaderView::sectionViewportPosition(int logicalIndex) const |
| 207 | { |
no test coverage detected