Changeset 2861
- Timestamp:
- 06/17/06 19:17:56
- Files:
-
- trunk/libnotify/ChangeLog (modified) (1 diff)
- trunk/libnotify/NEWS (modified) (1 diff)
- trunk/libnotify/configure.ac (modified) (2 diffs)
- trunk/libnotify/libnotify/internal.h (modified) (2 diffs)
- trunk/libnotify/libnotify/notify.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libnotify/ChangeLog
r2854 r2861 1 Sat Jun 17 19:17:05 PDT 2006 Christian Hammond <chipx86@chipx86.com> 2 3 * libnotify/internal.h: 4 * libnotify/notify.h: 5 * configure.ac: 6 - Add G_BEGIN_DECLS and G_END_DECLS to notify.h, so that libnotify can 7 be used in C++ applications properly. 8 1 9 ========================= 0.4.1 ========================= 2 10 trunk/libnotify/NEWS
r2858 r2861 1 version 0.4.2 (17-June-2006): 2 * Add G_BEGIN_DECLS and G_END_DECLS to notify.h, so that libnotify can 3 be used in C++ applications properly. 4 1 5 version 0.4.1 (17-June-2006): 2 6 * Added support for attaching to a GtkStatusIcon. Patch by chpe. (Bug #60) trunk/libnotify/configure.ac
r2854 r2861 4 4 dnl # Initialize autoconf 5 5 dnl ################################################################ 6 AC_INIT(libnotify, 0.4. 1, chipx86@chipx86.com)6 AC_INIT(libnotify, 0.4.2, chipx86@chipx86.com) 7 7 AC_PREREQ(2.50) 8 8 AC_CONFIG_SRCDIR(config.h.in) … … 15 15 LIBGALAGO_MAJOR_VERSION=0 16 16 LIBGALAGO_MINOR_VERSION=4 17 LIBGALAGO_MICRO_VERSION= 117 LIBGALAGO_MICRO_VERSION=2 18 18 LIBGALAGO_DEVEL_VERSION=0 19 19 trunk/libnotify/libnotify/internal.h
r2477 r2861 37 37 #define NOTIFY_DBUS_CORE_OBJECT "/org/freedesktop/Notifications" 38 38 39 G_BEGIN_DECLS 40 39 41 DBusGConnection *_notify_get_dbus_g_conn(void); 40 42 DBusGProxy *_notify_get_g_proxy(void); … … 46 48 const NotifyNotification *n); 47 49 50 G_END_DECLS 51 48 52 #endif /* _LIBNOTIFY_INTERNAL_H_ */ trunk/libnotify/libnotify/notify.h
r2777 r2861 28 28 #include <libnotify/notify-enum-types.h> 29 29 30 /**************************************************************************/ 31 /** @name libnotify Base API */ 32 /**************************************************************************/ 33 /*@{*/ 30 G_BEGIN_DECLS 34 31 35 32 /** … … 88 85 char **ret_spec_version); 89 86 90 /*@}*/ 87 G_END_DECLS 91 88 92 89 #endif /* _LIBNOTIFY_NOTIFY_H_ */
