| 68 | QMap<QKeyEdit*, bool> m_instances; |
| 69 | static QKeyEditHookManager* s_instance; |
| 70 | QKeyEditHookManager(QObject* parent = nullptr) : QObject(parent) {} |
| 71 | ~QKeyEditHookManager() { uninstallHook(); } |
| 72 | public: |
| 73 | static QKeyEditHookManager* instance() |
| 74 | { |
| 75 | static QKeyEditHookManager inst; |
| 76 | return &inst; |
| 77 | } |
nothing calls this directly
no outgoing calls
no test coverage detected