diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-07-07 15:37:26 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-07-07 15:37:26 -0400 |
commit | 4fe864d53eea581c95685e31a4372a83f87fce55 (patch) | |
tree | bea6d34e86a2f4f4dd91a2fac0f1c862c0069f81 /src/indicator-sound.c | |
parent | fbe33a6d8e37468d5f01c5747c9ccb1763208db6 (diff) | |
parent | 14f54b95128ac1d17d1c7aa8b2bcf46853fff3d5 (diff) | |
download | ayatana-indicator-sound-4fe864d53eea581c95685e31a4372a83f87fce55.tar.gz ayatana-indicator-sound-4fe864d53eea581c95685e31a4372a83f87fce55.tar.bz2 ayatana-indicator-sound-4fe864d53eea581c95685e31a4372a83f87fce55.zip |
Import upstream version 0.7.3
Diffstat (limited to 'src/indicator-sound.c')
-rw-r--r-- | src/indicator-sound.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/indicator-sound.c b/src/indicator-sound.c index b8c0351..76bf710 100644 --- a/src/indicator-sound.c +++ b/src/indicator-sound.c @@ -72,8 +72,8 @@ static GtkLabel * get_label (IndicatorObject * io); static GtkImage * get_icon (IndicatorObject * io); static GtkMenu * get_menu (IndicatorObject * io); static const gchar * get_accessible_desc (IndicatorObject * io); -static void indicator_sound_scroll (IndicatorObject* io, - gint delta, +static void indicator_sound_scroll (IndicatorObject * io, + IndicatorObjectEntry * entry, gint delta, IndicatorScrollDirection direction); //key/moust event handlers @@ -124,7 +124,7 @@ indicator_sound_class_init (IndicatorSoundClass *klass) io_class->get_image = get_icon; io_class->get_menu = get_menu; io_class->get_accessible_desc = get_accessible_desc; - io_class->scroll = indicator_sound_scroll; + io_class->entry_scrolled = indicator_sound_scroll; } static void @@ -648,8 +648,8 @@ key_release_cb(GtkWidget* widget, GdkEventKey* event, gpointer data) } static void -indicator_sound_scroll (IndicatorObject *io, gint delta, - IndicatorScrollDirection direction) +indicator_sound_scroll (IndicatorObject * io, IndicatorObjectEntry * entry, + gint delta, IndicatorScrollDirection direction) { //g_debug("indicator-sound-scroll - current slider value"); IndicatorSoundPrivate* priv = INDICATOR_SOUND_GET_PRIVATE(INDICATOR_SOUND (io)); |