[Galago-commits] r2372 - in trunk/libnotify-ng: . tests tools
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Tue Dec 13 14:42:54 PST 2005
Author: johnp
Date: 2005-12-13 14:42:48 -0800 (Tue, 13 Dec 2005)
New Revision: 2372
Modified:
trunk/libnotify-ng/ChangeLog
trunk/libnotify-ng/tests/Makefile.am
trunk/libnotify-ng/tools/Makefile.am
trunk/libnotify-ng/tools/notify-send.c
Log:
* Release 0.3.0
* tests/Makefile.am, tools/Makefile.am: patch from Rodney
Dawes <dobey at novell.com> fixing make distcheck
* tools/notify-send.c: use show_and_forget
Modified: trunk/libnotify-ng/ChangeLog
===================================================================
--- trunk/libnotify-ng/ChangeLog 2005-12-13 22:16:51 UTC (rev 2371)
+++ trunk/libnotify-ng/ChangeLog 2005-12-13 22:42:48 UTC (rev 2372)
@@ -1,3 +1,12 @@
+Tue Dec 13 2005 John (J5) Palmieri <johnp at redhat.com>
+
+ * Release 0.3.0
+
+ * tests/Makefile.am, tools/Makefile.am: patch from Rodney
+ Dawes <dobey at novell.com> fixing make distcheck
+
+ * tools/notify-send.c: use show_and_forget
+
Fri Dec 09 2005 John (J5) Palmieri <johnp at redhat.com>
* libnotify/notifymarshal.[c|h]: new files where GLib callback
Modified: trunk/libnotify-ng/tests/Makefile.am
===================================================================
--- trunk/libnotify-ng/tests/Makefile.am 2005-12-13 22:16:51 UTC (rev 2371)
+++ trunk/libnotify-ng/tests/Makefile.am 2005-12-13 22:42:48 UTC (rev 2372)
@@ -47,4 +47,6 @@
test_xy_stress_LDADD = $(common_ldflags)
-INCLUDES = $(PACKAGE_CFLAGS) $(GDK_CFLAGS)
+INCLUDES = $(PACKAGE_CFLAGS) \
+ $(GDK_CFLAGS) \
+ -I$(top_srcdir)
Modified: trunk/libnotify-ng/tools/Makefile.am
===================================================================
--- trunk/libnotify-ng/tools/Makefile.am 2005-12-13 22:16:51 UTC (rev 2371)
+++ trunk/libnotify-ng/tools/Makefile.am 2005-12-13 22:42:48 UTC (rev 2372)
@@ -8,4 +8,5 @@
notify_send_SOURCES = notify-send.c
notify_send_LDADD = $(common_ldflags)
-INCLUDES = $(PACKAGE_CFLAGS)
+INCLUDES = $(PACKAGE_CFLAGS) \
+ -I$(top_srcdir)
Modified: trunk/libnotify-ng/tools/notify-send.c
===================================================================
--- trunk/libnotify-ng/tools/notify-send.c 2005-12-13 22:16:51 UTC (rev 2371)
+++ trunk/libnotify-ng/tools/notify-send.c 2005-12-13 22:42:48 UTC (rev 2372)
@@ -43,7 +43,6 @@
poptContext opt_ctx;
const char **args;
NotifyNotification *notify;
- GError *error = NULL;
g_type_init ();
@@ -135,7 +134,7 @@
notify_notification_set_urgency (notify, urgency);
notify_notification_set_timeout (notify, expire_timeout);
- notify_notification_show (notify, error);
+ notify_notification_show_and_forget (notify, NULL);
poptFreeContext(opt_ctx);
notify_uninit();
More information about the galago-commits
mailing list