| 690 | |
| 691 | |
| 692 | void GlobalDebugModulesContainer::notifyFontChanged() |
| 693 | { |
| 694 | for (auto it = m_widgetMap.begin(); it != m_widgetMap.end(); it++) |
| 695 | { |
| 696 | if (it.value()) |
| 697 | it.value()->updateFonts(); |
| 698 | } |
| 699 | } |
| 700 | |
| 701 | |
| 702 | DebugModulesFilterProxyModel::DebugModulesFilterProxyModel(QObject* parent) : QSortFilterProxyModel(parent) |
nothing calls this directly
no test coverage detected