summaryrefslogtreecommitdiffstats
path: root/desktop/pidgin-libnotify/pidgin-libnotify-0.14-libnotify-0.7.patch
blob: 40e6c02b815251d7e1e42fa6f64e5cfe10f9a261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- src/pidgin-libnotify.c
+++ src/pidgin-libnotify.c
@@ -286,7 +286,15 @@
 		g_free (tr_body);
 		return;
 	}
+#ifdef NOTIFY_CHECK_VERSION
+#if NOTIFY_CHECK_VERSION (0, 7, 0)
+	notification = notify_notification_new (title, tr_body, NULL);
+#else
 	notification = notify_notification_new (title, tr_body, NULL, NULL);
+#endif
+#else
+	notification = notify_notification_new (title, tr_body, NULL, NULL);
+#endif
 	purple_debug_info (PLUGIN_ID, "notify(), new: "
 					 "title: '%s', body: '%s', buddy: '%s'\n",
 					 title, tr_body, best_name (buddy));