| 3605 | } |
| 3606 | |
| 3607 | bool SpreadsheetView::hasValues(const QVector<Column*> cols) { |
| 3608 | bool hasValues = false; |
| 3609 | for (const auto* col : cols) { |
| 3610 | if (col->hasValues()) { |
| 3611 | hasValues = true; |
| 3612 | break; |
| 3613 | } |
| 3614 | } |
| 3615 | |
| 3616 | return hasValues; |
| 3617 | } |
| 3618 | |
| 3619 | /*! |
| 3620 | Cause a repaint of the header. |
no outgoing calls
no test coverage detected