diff options
author | Cody Russell <crussell@canonical.com> | 2010-03-16 15:31:15 -0500 |
---|---|---|
committer | Cody Russell <crussell@canonical.com> | 2010-03-16 15:31:15 -0500 |
commit | 11c78ed1bb7f41218518fcee6bdb94548277b67b (patch) | |
tree | 1081041729fc8d0c50e8313e1d276551f1668add /libindicator | |
parent | 02d3dde87c8fcf2702741ab265dbaa24d498cd51 (diff) | |
download | libayatana-indicator-11c78ed1bb7f41218518fcee6bdb94548277b67b.tar.gz libayatana-indicator-11c78ed1bb7f41218518fcee6bdb94548277b67b.tar.bz2 libayatana-indicator-11c78ed1bb7f41218518fcee6bdb94548277b67b.zip |
Use IndicatorScrollDirection instead of gboolean in IndicatorObjectClass->scroll function pointer.
Diffstat (limited to 'libindicator')
-rw-r--r-- | libindicator/indicator-object.h | 2 |
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); |