| 208 | } |
| 209 | |
| 210 | void MacroSegmentList::ClearWidgetsFromCacheFor(const Macro *macro) |
| 211 | { |
| 212 | auto it = _widgetCache.find(macro); |
| 213 | if (it == _widgetCache.end()) { |
| 214 | return; |
| 215 | } |
| 216 | clearWidgetVector(it->second); |
| 217 | _widgetCache.erase(it); |
| 218 | } |
| 219 | |
| 220 | void MacroSegmentList::Highlight(int idx, QColor color) |
| 221 | { |
no test coverage detected