diff options
author | Cody Russell <crussell@canonical.com> | 2010-03-17 01:23:33 -0500 |
---|---|---|
committer | Cody Russell <crussell@canonical.com> | 2010-03-17 01:23:33 -0500 |
commit | 6e407358a9f48bcf24c6224b35cd2845fdf56004 (patch) | |
tree | fdf7e510b18ff73e9d6f04c3705de439ad554714 | |
parent | c20b69cf13582bf738c0dc3a76b8065fbd32665b (diff) | |
download | ayatana-indicator-sound-6e407358a9f48bcf24c6224b35cd2845fdf56004.tar.gz ayatana-indicator-sound-6e407358a9f48bcf24c6224b35cd2845fdf56004.tar.bz2 ayatana-indicator-sound-6e407358a9f48bcf24c6224b35cd2845fdf56004.zip |
Remove some debugging output.
-rw-r--r-- | src/indicator-sound.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/indicator-sound.c b/src/indicator-sound.c index 6dcc56b..e9a8e73 100644 --- a/src/indicator-sound.c +++ b/src/indicator-sound.c @@ -215,8 +215,6 @@ get_icon (IndicatorObject * io) static GtkMenu * get_menu (IndicatorObject * io) { - g_print ("get_menu(): %s\n", G_OBJECT_TYPE_NAME (io)); - DbusmenuGtkMenu *menu = dbusmenu_gtkmenu_new(INDICATOR_SOUND_DBUS_NAME, INDICATOR_SOUND_DBUS_OBJECT); DbusmenuGtkClient *client = dbusmenu_gtkmenu_get_client(menu); @@ -251,8 +249,6 @@ static gboolean new_slider_item(DbusmenuMenuitem * newitem, DbusmenuMenuitem * p io = g_object_get_data (G_OBJECT (client), "indicator"); - g_print ("new_slider_item(): %s\n", G_OBJECT_TYPE_NAME (io)); - volume_slider = ido_scale_menu_item_new_with_range ("Volume", initial_volume_percent, 0, 100, 0.5); g_object_set(volume_slider, "reverse-scroll-events", TRUE, NULL); @@ -686,6 +682,4 @@ scroll (IndicatorObject *io, gint delta, IndicatorScrollDirection direction) gtk_range_set_value (GTK_RANGE (sound->slider), value); - - g_print ("scroll %d!!\n", (gint)direction); } |