aboutsummaryrefslogtreecommitdiff
path: root/src/volume-widget.c
diff options
context:
space:
mode:
authorLuke Yelavich <luke.yelavich@canonical.com>2011-03-09 12:17:01 +1100
committerLuke Yelavich <luke.yelavich@canonical.com>2011-03-09 12:17:01 +1100
commit726f77ccdb4d0cc47b952c8403df926a9c7c7d45 (patch)
tree1cabeac965c3a662e69580cdaf3c3d0a57796a82 /src/volume-widget.c
parentc552d82ff707e86eba876aaa8fda86e1596856a0 (diff)
downloadayatana-indicator-sound-726f77ccdb4d0cc47b952c8403df926a9c7c7d45.tar.gz
ayatana-indicator-sound-726f77ccdb4d0cc47b952c8403df926a9c7c7d45.tar.bz2
ayatana-indicator-sound-726f77ccdb4d0cc47b952c8403df926a9c7c7d45.zip
Indicators are now responsible for updating their own accessible description.
Refactor accessible description update code into a new function.
Diffstat (limited to 'src/volume-widget.c')
-rw-r--r--src/volume-widget.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/src/volume-widget.c b/src/volume-widget.c
index be97994..c45e93c 100644
--- a/src/volume-widget.c
+++ b/src/volume-widget.c
@@ -138,14 +138,7 @@ volume_widget_property_update( DbusmenuMenuitem* item, gchar* property,
gdouble update = g_variant_get_double (value);
//g_debug("volume-widget - update level with value %f", update);
gtk_range_set_value(range, update);
-
- GList *entry = indicator_object_get_entries(priv->indicator);
- g_signal_emit(G_OBJECT(priv->indicator),
- INDICATOR_OBJECT_SIGNAL_ACCESSIBLE_DESC_UPDATE_ID,
- 0,
- entry->data,
- TRUE);
- g_list_free(entry);
+ update_accessible_desc(priv->indicator);
}
}
}
@@ -165,14 +158,7 @@ volume_widget_set_twin_item(VolumeWidget* self,
GtkWidget *slider = ido_scale_menu_item_get_scale((IdoScaleMenuItem*)priv->ido_volume_slider);
GtkRange *range = (GtkRange*)slider;
gtk_range_set_value(range, initial_level);
-
- GList *entry = indicator_object_get_entries(priv->indicator);
- g_signal_emit(G_OBJECT(priv->indicator),
- INDICATOR_OBJECT_SIGNAL_ACCESSIBLE_DESC_UPDATE_ID,
- 0,
- entry->data,
- TRUE);
- g_list_free(entry);
+ update_accessible_desc(priv->indicator);
}
static gboolean