| 42 | } |
| 43 | |
| 44 | void WidgetColorizer::drawBranches(const QTreeView* treeView, QPainter* painter, |
| 45 | const QRect& rect, const QModelIndex& /*index*/, |
| 46 | const QColor& baseColor) |
| 47 | { |
| 48 | QRect newRect(rect); |
| 49 | newRect.setWidth(treeView->indentation()); |
| 50 | painter->fillRect(newRect, baseColor); |
| 51 | } |
| 52 | |
| 53 | QColor WidgetColorizer::colorForId(uint id, const QPalette& activePalette, bool forBackground) |
| 54 | { |
nothing calls this directly
no test coverage detected