| 156 | }; |
| 157 | |
| 158 | void ColorManager::addUserArea(qint64 posStart, qint64 posEnd, QColor fontColor, QBrush areaStyle) |
| 159 | { |
| 160 | ColoredArea userArea = ColoredArea(posStart, posEnd, fontColor, areaStyle); |
| 161 | _userAreas.append(userArea); |
| 162 | } |
| 163 | |
| 164 | void ColorManager::clearUserAreas() |
| 165 | { |
nothing calls this directly
no test coverage detected