aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-07-07 10:03:00 -0500
committerTed Gould <ted@gould.cx>2011-07-07 10:03:00 -0500
commit1af03e83910b6005ddfb9b1f71677f02db9cfe2b (patch)
treebdd77d50f0d41e0547885bd368cb75916502ebf1 /src
parent58779f7506601ca54d4fffcee79c6a0172f3f4ce (diff)
parent62c7490c8d18ed4f4e0c7b4ab63d518e12cbd168 (diff)
downloadayatana-indicator-application-1af03e83910b6005ddfb9b1f71677f02db9cfe2b.tar.gz
ayatana-indicator-application-1af03e83910b6005ddfb9b1f71677f02db9cfe2b.tar.bz2
ayatana-indicator-application-1af03e83910b6005ddfb9b1f71677f02db9cfe2b.zip
Migrated to libindicator 0.4
Diffstat (limited to 'src')
-rw-r--r--src/indicator-application.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/indicator-application.c b/src/indicator-application.c
index 2b26c92..fd24c27 100644
--- a/src/indicator-application.c
+++ b/src/indicator-application.c
@@ -109,7 +109,7 @@ static void indicator_application_dispose (GObject *object);
static void indicator_application_finalize (GObject *object);
static GList * get_entries (IndicatorObject * io);
static guint get_location (IndicatorObject * io, IndicatorObjectEntry * entry);
-static void scroll_entry (IndicatorObject * io, IndicatorObjectEntry * entry, gint delta, IndicatorScrollDirection direction);
+static void entry_scrolled (IndicatorObject * io, IndicatorObjectEntry * entry, gint delta, IndicatorScrollDirection direction);
void connection_changed (IndicatorServiceManager * sm, gboolean connected, IndicatorApplication * application);
static void connected (IndicatorApplication * application);
static void disconnected (IndicatorApplication * application);
@@ -144,7 +144,7 @@ indicator_application_class_init (IndicatorApplicationClass *klass)
io_class->get_entries = get_entries;
io_class->get_location = get_location;
- io_class->scroll_entry = scroll_entry;
+ io_class->entry_scrolled = entry_scrolled;
return;
}
@@ -403,7 +403,7 @@ get_location (IndicatorObject * io, IndicatorObjectEntry * entry)
}
/* Redirect the scroll event to the Application Item */
-static void scroll_entry (IndicatorObject * io, IndicatorObjectEntry * entry, gint delta, IndicatorScrollDirection direction) {
+static void entry_scrolled (IndicatorObject * io, IndicatorObjectEntry * entry, gint delta, IndicatorScrollDirection direction) {
g_return_if_fail(IS_INDICATOR_APPLICATION(io));