diff --git a/ChangeLog b/ChangeLog index 108c56b..f143088 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Jun 06 12:44:48 PDT 2006 Christian Hammond + + * docs/reference/tmpl/notification.sgml: + * libnotify/notification.h: + - Small random fixes. + Tue Jun 06 01:45:46 PDT 2006 Christian Hammond * docs/reference/libnotify-docs.sgml: diff --git a/docs/reference/tmpl/notification.sgml b/docs/reference/tmpl/notification.sgml index eb34763..8e94f86 100644 --- a/docs/reference/tmpl/notification.sgml +++ b/docs/reference/tmpl/notification.sgml @@ -43,8 +43,33 @@ This is an opaque structure representing a notification. This should not be used directly. Use the accessor functions below. -@parent: The parent object. -@priv: Private data. + + + + + + +@notifynotification: the object which received the signal. + + + + + + + + + + + + + + + + + + + + diff --git a/libnotify/notification.h b/libnotify/notification.h index 3a8c999..c57d2af 100644 --- a/libnotify/notification.h +++ b/libnotify/notification.h @@ -54,7 +54,7 @@ typedef struct _NotifyNotificationPrivate NotifyNotificationPrivate; struct _NotifyNotification { - GObject parent; + GObject parent_object; NotifyNotificationPrivate *priv; }; @@ -66,14 +66,14 @@ struct _NotifyNotificationClass void (*closed)(NotifyNotification *notification); }; -/** +/* * Notification urgency levels. */ typedef enum { - NOTIFY_URGENCY_LOW, /**< Low urgency. */ - NOTIFY_URGENCY_NORMAL, /**< Normal urgency. */ - NOTIFY_URGENCY_CRITICAL, /**< Critical urgency. */ + NOTIFY_URGENCY_LOW, + NOTIFY_URGENCY_NORMAL, + NOTIFY_URGENCY_CRITICAL, } NotifyUrgency; @@ -154,4 +154,6 @@ void notify_notification_clear_actions(NotifyNotification *notification); gboolean notify_notification_close(NotifyNotification *notification, GError **error); +G_END_DECLS + #endif /* NOTIFY_NOTIFICATION_H */