| 182 | } |
| 183 | |
| 184 | void WidgetManager::_deleteDelayWidgets() |
| 185 | { |
| 186 | if (!mDestroyWidgets.empty()) |
| 187 | { |
| 188 | for (auto& widget : mDestroyWidgets) |
| 189 | delete widget; |
| 190 | mDestroyWidgets.clear(); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | const std::string& WidgetManager::getCategoryName() const |
| 195 | { |
no test coverage detected