Changeset 2408
- Timestamp:
- 01/10/06 22:56:38
- Files:
-
- trunk/libnotify-ng/ChangeLog (modified) (1 diff)
- trunk/libnotify-ng/tests/test-default-action.c (modified) (1 diff)
- trunk/libnotify-ng/tools/notify-send.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libnotify-ng/ChangeLog
r2404 r2408 1 Tue Jan 10 22:55:35 PST 2006 Christian Hammond <chipx86@chipx86.com> 2 3 * tests/test-default-action.c: 4 * tools/notify-send.c: 5 - Fix some C99 usage. 6 1 7 Tue Jan 10 16:20:27 MST 2006 David Trowbridge <trowbrds@gmail.com> 2 8 trunk/libnotify-ng/tests/test-default-action.c
r2391 r2408 50 50 { 51 51 NotifyNotification *n; 52 DBusConnection *conn; 52 53 53 54 if (!notify_init("Default Action Test")) exit(1); 54 55 55 DBusConnection *conn = dbus_bus_get(DBUS_BUS_SESSION, NULL);56 conn = dbus_bus_get(DBUS_BUS_SESSION, NULL); 56 57 loop = g_main_loop_new(NULL, FALSE); 57 58 trunk/libnotify-ng/tools/notify-send.c
r2372 r2408 45 45 NotifyNotification *notify; 46 46 47 g_type_init ();48 49 47 struct poptOption options[] = 50 48 { … … 66 64 POPT_TABLEEND 67 65 }; 66 67 g_type_init (); 68 68 69 69 opt_ctx = poptGetContext("notify-send", argc, argv, options, 0);
