diff options
Diffstat (limited to 'monitor.c')
| -rw-r--r-- | monitor.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/monitor.c b/monitor.c index 03beab3cdd..953e7482b7 100644 --- a/monitor.c +++ b/monitor.c @@ -488,6 +488,12 @@ void monitor_protocol_event(MonitorEvent event, QObject *data) case QEVENT_DEVICE_TRAY_MOVED: event_name = "DEVICE_TRAY_MOVED"; break; + case QEVENT_SUSPEND: + event_name = "SUSPEND"; + break; + case QEVENT_WAKEUP: + event_name = "WAKEUP"; + break; default: abort(); break; |