diff options
author | Jason Conti <jason.conti@gmail.com> | 2012-02-26 11:25:51 -0500 |
---|---|---|
committer | Jason Conti <jason.conti@gmail.com> | 2012-02-26 11:25:51 -0500 |
commit | eba6513e679b4ff261d000fc1e288a0275e6d596 (patch) | |
tree | 8be6ae658b84f171b0ef3d67e6ace8080391727e /src/notification.h | |
parent | c262245cfa2ae7b01e9e95cfe450e4b2c6676e11 (diff) | |
download | ayatana-indicator-notifications-eba6513e679b4ff261d000fc1e288a0275e6d596.tar.gz ayatana-indicator-notifications-eba6513e679b4ff261d000fc1e288a0275e6d596.tar.bz2 ayatana-indicator-notifications-eba6513e679b4ff261d000fc1e288a0275e6d596.zip |
* Rename notification_is_volume to notification_is_private.
* Add filters for indicator-sound and brightness notifications.
* Strip whitespace leading and trailing whitespace from the summary
and body.
Diffstat (limited to 'src/notification.h')
-rw-r--r-- | src/notification.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/notification.h b/src/notification.h index a1f98f1..3009998 100644 --- a/src/notification.h +++ b/src/notification.h @@ -46,7 +46,7 @@ struct _NotificationPrivate { gint expire_timeout; GDateTime *timestamp; - gboolean is_volume; + gboolean is_private; }; #define NOTIFICATION_GET_PRIVATE(o) \ @@ -61,7 +61,7 @@ const gchar *notification_get_summary(Notification *); const gchar *notification_get_body(Notification *); gint64 notification_get_timestamp(Notification *); gchar *notification_timestamp_for_locale(Notification *); -gboolean notification_is_volume(Notification *); +gboolean notification_is_private(Notification *); gboolean notification_is_empty(Notification *); void notification_print(Notification *); |