diff options
author | Elan Ruusamäe <[email protected]> | 2013-02-18 22:07:40 +0200 |
---|---|---|
committer | Elan Ruusamäe <[email protected]> | 2013-02-18 22:07:40 +0200 |
commit | d263541b686f36a8f61c00eaee4d852ce5e8a766 (patch) | |
tree | 52424675d3e106fb3fb6f31e4ec125da5dab833d /src | |
parent | 38ef332671d38e8653887b75143d7f0a0f29f157 (diff) | |
download | mate-notification-daemon-d263541b686f36a8f61c00eaee4d852ce5e8a766.tar.bz2 mate-notification-daemon-d263541b686f36a8f61c00eaee4d852ce5e8a766.tar.xz |
use libnotify, not libmatenotify
Diffstat (limited to 'src')
-rw-r--r-- | src/capplet/mate-notification-properties.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/capplet/mate-notification-properties.c b/src/capplet/mate-notification-properties.c index cffee24..89385ed 100644 --- a/src/capplet/mate-notification-properties.c +++ b/src/capplet/mate-notification-properties.c @@ -28,7 +28,7 @@ #include <gdk/gdk.h> #include <gio/gio.h> #include <string.h> -#include <libmatenotify/notify.h> +#include <libnotify/notify.h> #include "stack.h" @@ -472,7 +472,7 @@ static void notification_properties_dialog_preview(NotificationAppletDialog* dia dialog->preview = NULL; } - dialog->preview = notify_notification_new(_("Notification Test"), _("Just a test"), "dialog-information", NULL); + dialog->preview = notify_notification_new(_("Notification Test"), _("Just a test"), "dialog-information"); if (!notify_notification_show(dialog->preview, &error)) { |