aboutsummaryrefslogtreecommitdiff
path: root/src/title-widget.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2010-12-21 17:46:06 +0000
committerConor Curran <conor.curran@canonical.com>2010-12-21 17:46:06 +0000
commit4aa3c531119fec777e63bdb3fe953b6a35d5ffae (patch)
tree631720dfa4f9d666636c5b895510382d41a509b9 /src/title-widget.c
parenta004703346a865a716538bd4128c5613548618c0 (diff)
downloadayatana-indicator-sound-4aa3c531119fec777e63bdb3fe953b6a35d5ffae.tar.gz
ayatana-indicator-sound-4aa3c531119fec777e63bdb3fe953b6a35d5ffae.tar.bz2
ayatana-indicator-sound-4aa3c531119fec777e63bdb3fe953b6a35d5ffae.zip
remove the trace
Diffstat (limited to 'src/title-widget.c')
-rw-r--r--src/title-widget.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/title-widget.c b/src/title-widget.c
index c3ef6a3..08b4b81 100644
--- a/src/title-widget.c
+++ b/src/title-widget.c
@@ -92,7 +92,6 @@ title_widget_set_icon(TitleWidget *self)
GString* app_panel = g_string_new ( g_utf8_strdown ( dbusmenu_menuitem_property_get(priv->twin_item, DBUSMENU_TITLE_MENUITEM_NAME),
-1 ));
GtkWidget * icon = NULL;
- g_debug ("banshee icon name = %s", app_panel->str);
// Not ideal but apparently we want the banshee icon to be the greyscale one
// and any others to be the icon from the desktop file => colour.
@@ -154,14 +153,11 @@ title_widget_property_update(DbusmenuMenuitem* item, gchar* property,
{
g_return_if_fail (IS_TITLE_WIDGET (userdata));
TitleWidget* mitem = TITLE_WIDGET(userdata);
- g_debug("PROPERTY UPDATE FOR THE TITLE");
if(g_ascii_strcasecmp(DBUSMENU_TITLE_MENUITEM_NAME, property) == 0){
gtk_menu_item_set_label (GTK_MENU_ITEM(mitem),
g_value_get_string(value));
}
else if(g_ascii_strcasecmp(DBUSMENU_TITLE_MENUITEM_ICON, property) == 0){
- g_debug("changing the icon data on the title - %s",
- g_value_get_string(value));
title_widget_set_icon (mitem);
}
}