aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Russell <crussell@canonical.com>2010-03-16 15:31:15 -0500
committerCody Russell <crussell@canonical.com>2010-03-16 15:31:15 -0500
commit11c78ed1bb7f41218518fcee6bdb94548277b67b (patch)
tree1081041729fc8d0c50e8313e1d276551f1668add
parent02d3dde87c8fcf2702741ab265dbaa24d498cd51 (diff)
downloadlibayatana-indicator-11c78ed1bb7f41218518fcee6bdb94548277b67b.tar.gz
libayatana-indicator-11c78ed1bb7f41218518fcee6bdb94548277b67b.tar.bz2
libayatana-indicator-11c78ed1bb7f41218518fcee6bdb94548277b67b.zip
Use IndicatorScrollDirection instead of gboolean in IndicatorObjectClass->scroll function pointer.
-rw-r--r--libindicator/indicator-object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libindicator/indicator-object.h b/libindicator/indicator-object.h
index 7bd296d..3c6bec5 100644
--- a/libindicator/indicator-object.h
+++ b/libindicator/indicator-object.h
@@ -97,7 +97,7 @@ struct _IndicatorObjectClass {
void (*entry_added) (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer user_data);
void (*entry_removed) (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer user_data);
void (*entry_moved) (IndicatorObject * io, IndicatorObjectEntry * entry, guint old_pos, guint new_pos, gpointer user_data);
- void (*scroll) (IndicatorObject * io, gint delta, gboolean orientation);
+ void (*scroll) (IndicatorObject * io, gint delta, IndicatorScrollDirection direction);
/* Reserved */
void (* indicator_object_reserved_1) (void);