| 112 | } |
| 113 | |
| 114 | bool TreeItem::setBackgroundColor(int column, const QVariant& value) { |
| 115 | if (column < 0 || column >= itemData.size()) |
| 116 | return false; |
| 117 | |
| 118 | m_backgroundColor = value.value<QColor>(); |
| 119 | return true; |
| 120 | } |
| 121 | |
| 122 | // ########################################################## |
| 123 | // TreeModel ############################################### |
no test coverage detected