eventmanager: drop obsoleted ignore events flag (#2660)

This flag became obsoleted in commit
287e6c4ede
This commit is contained in:
Mykola Perehudov
2023-07-06 16:23:11 +03:00
committed by GitHub
parent bc34713b29
commit bbedb065e1
4 changed files with 10 additions and 13 deletions

View File

@@ -15,14 +15,11 @@ class CEventManager {
public:
CEventManager();
void postEvent(const SHyprIPCEvent event, bool force = false);
void postEvent(const SHyprIPCEvent event);
void startThread();
bool m_bIgnoreEvents = false;
std::thread m_tThread;
private:
void flushEvents();
@@ -32,4 +29,4 @@ class CEventManager {
std::deque<std::pair<int, wl_event_source*>> m_dAcceptedSocketFDs;
};
inline std::unique_ptr<CEventManager> g_pEventManager;
inline std::unique_ptr<CEventManager> g_pEventManager;