[Galago-commits] r2827 - in trunk/libnotify: . docs/reference/tmpl
libnotify
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Tue Jun 6 12:45:24 PDT 2006
Author: chipx86
Date: 2006-06-06 12:45:19 -0700 (Tue, 06 Jun 2006)
New Revision: 2827
Modified:
trunk/libnotify/ChangeLog
trunk/libnotify/docs/reference/tmpl/notification.sgml
trunk/libnotify/libnotify/notification.h
Log:
Small random fixes.
Modified: trunk/libnotify/ChangeLog
===================================================================
--- trunk/libnotify/ChangeLog 2006-06-06 09:17:21 UTC (rev 2826)
+++ trunk/libnotify/ChangeLog 2006-06-06 19:45:19 UTC (rev 2827)
@@ -1,3 +1,9 @@
+Tue Jun 06 12:44:48 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
+
+ * docs/reference/tmpl/notification.sgml:
+ * libnotify/notification.h:
+ - Small random fixes.
+
Tue Jun 06 01:45:46 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
* docs/reference/libnotify-docs.sgml:
Modified: trunk/libnotify/docs/reference/tmpl/notification.sgml
===================================================================
--- trunk/libnotify/docs/reference/tmpl/notification.sgml 2006-06-06 09:17:21 UTC (rev 2826)
+++ trunk/libnotify/docs/reference/tmpl/notification.sgml 2006-06-06 19:45:19 UTC (rev 2827)
@@ -43,9 +43,34 @@
not be used directly. Use the accessor functions below.
</para>
- at parent: The parent object.
- at priv: Private data.
+<!-- ##### SIGNAL NotifyNotification::closed ##### -->
+<para>
+
+</para>
+
+ at notifynotification: the object which received the signal.
+
+<!-- ##### ARG NotifyNotification:attach-widget ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG NotifyNotification:body ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG NotifyNotification:icon-name ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG NotifyNotification:summary ##### -->
+<para>
+
+</para>
+
<!-- ##### ENUM NotifyUrgency ##### -->
<para>
The urgency level of the notification.
Modified: trunk/libnotify/libnotify/notification.h
===================================================================
--- trunk/libnotify/libnotify/notification.h 2006-06-06 09:17:21 UTC (rev 2826)
+++ trunk/libnotify/libnotify/notification.h 2006-06-06 19:45:19 UTC (rev 2827)
@@ -54,7 +54,7 @@
struct _NotifyNotification
{
- GObject parent;
+ GObject parent_object;
NotifyNotificationPrivate *priv;
};
@@ -66,14 +66,14 @@
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 @@
gboolean notify_notification_close(NotifyNotification *notification,
GError **error);
+G_END_DECLS
+
#endif /* NOTIFY_NOTIFICATION_H */
More information about the galago-commits
mailing list