Skip to content
Snippets Groups Projects
Commit d9f4d906 authored by Nick Schermer's avatar Nick Schermer
Browse files

Add checks for API change in libnotify 0.7.0.

parent 01236511
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,11 @@ thunar_notify_unmount (GMount *mount)
name);
}
#if NOTIFY_CHECK_VERSION (0, 7, 0)
notification = notify_notification_new (summary, message, icon_name);
#else
notification = notify_notification_new (summary, message, icon_name, NULL);
#endif
notify_notification_set_urgency (notification, NOTIFY_URGENCY_CRITICAL);
notify_notification_set_timeout (notification, NOTIFY_EXPIRES_NEVER);
notify_notification_show (notification, NULL);
......@@ -244,7 +248,11 @@ thunar_notify_eject (GVolume *volume)
name);
}
#if NOTIFY_CHECK_VERSION (0, 7, 0)
notification = notify_notification_new (summary, message, icon_name);
#else
notification = notify_notification_new (summary, message, icon_name, NULL);
#endif
notify_notification_set_urgency (notification, NOTIFY_URGENCY_CRITICAL);
notify_notification_set_timeout (notification, NOTIFY_EXPIRES_NEVER);
notify_notification_show (notification, NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment