Fix event names for dwmipcpp update

The event names were renamed in the most recent update of dwmipcpp. This commit
makes the module compilable.
This commit is contained in:
Mihir Lad 2020-07-18 01:44:16 -04:00
parent 3cd05a83f9
commit 136fc3efed

View File

@ -81,7 +81,7 @@ namespace modules {
};
}
m_ipc->on_selected_monitor_change = [this](const dwmipc::SelectedMonitorChangeEvent& ev) {
m_ipc->on_monitor_focus_change = [this](const dwmipc::MonitorFocusChangeEvent& ev) {
m_active_mon_num = ev.new_mon_num;
for (auto& t : m_tags) {
@ -106,7 +106,7 @@ namespace modules {
}
};
m_ipc->on_selected_client_change = [this](const dwmipc::SelectedClientChangeEvent& ev) {
m_ipc->on_client_focus_change = [this](const dwmipc::ClientFocusChangeEvent& ev) {
if (ev.monitor_num != m_bar_mon) {
return;
}
@ -121,9 +121,9 @@ namespace modules {
};
m_ipc->subscribe(dwmipc::Event::LAYOUT_CHANGE);
m_ipc->subscribe(dwmipc::Event::SELECTED_MONITOR_CHANGE);
m_ipc->subscribe(dwmipc::Event::CLIENT_FOCUS_CHANGE);
m_ipc->subscribe(dwmipc::Event::TAG_CHANGE);
m_ipc->subscribe(dwmipc::Event::SELECTED_CLIENT_CHANGE);
m_ipc->subscribe(dwmipc::Event::MONITOR_FOCUS_CHANGE);
} catch (const dwmipc::IPCError& err) {
throw module_error(err.what());
}