diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-14 04:31:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-14 04:31:08 +0800 |
commit | 08bd7765721e5d866c4d7a546b94f691cf62d972 (patch) | |
tree | aaca52e83da675b32534d29176e94ebc0b13a53b /shell/e-sidebar.c | |
parent | 5f6a18500c3119731663ac4c059426c62a3b37f6 (diff) | |
download | gsoc2013-evolution-08bd7765721e5d866c4d7a546b94f691cf62d972.tar.gz gsoc2013-evolution-08bd7765721e5d866c4d7a546b94f691cf62d972.tar.zst gsoc2013-evolution-08bd7765721e5d866c4d7a546b94f691cf62d972.zip |
Get a basic shell window working.
svn path=/branches/kill-bonobo/; revision=35982
Diffstat (limited to 'shell/e-sidebar.c')
-rw-r--r-- | shell/e-sidebar.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/shell/e-sidebar.c b/shell/e-sidebar.c index aa63f00ed4..aca9765e87 100644 --- a/shell/e-sidebar.c +++ b/shell/e-sidebar.c @@ -336,7 +336,6 @@ sidebar_get_style (GtkToolShell *shell) static GtkReliefStyle sidebar_get_relief_style (GtkToolShell *shell) { - g_debug ("%s", G_STRFUNC); return GTK_RELIEF_NORMAL; } @@ -459,12 +458,11 @@ e_sidebar_add_action (ESidebar *sidebar, gtk_tool_item_set_is_important (GTK_TOOL_ITEM (widget), TRUE); gtk_widget_show (widget); - sidebar->priv->proxies = g_list_append (sidebar->priv->proxies, widget); + sidebar->priv->proxies = g_list_append ( + sidebar->priv->proxies, widget); gtk_widget_set_parent (widget, GTK_WIDGET (sidebar)); gtk_widget_queue_resize (GTK_WIDGET (sidebar)); - - g_debug ("Relief Style: %d", gtk_tool_item_get_relief_style (GTK_TOOL_ITEM (widget))); } gboolean |