diff options
author | Federico Mena Quintero <federico@novell.com> | 2010-03-19 04:35:28 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@gnome.org> | 2010-03-23 16:56:07 +0800 |
commit | f794e6a0032c9cee5ffb00eeefb8dc92662742de (patch) | |
tree | ac932710913801cc3cedd3ed26d4bd15a93fbe66 | |
parent | 7245c36554efbdb90aca29840fff74661ddf540e (diff) | |
download | gsoc2013-evolution-f794e6a0032c9cee5ffb00eeefb8dc92662742de.tar.gz gsoc2013-evolution-f794e6a0032c9cee5ffb00eeefb8dc92662742de.tar.zst gsoc2013-evolution-f794e6a0032c9cee5ffb00eeefb8dc92662742de.zip |
Oops, remove debug printf
Signed-off-by: Federico Mena Quintero <federico@novell.com>
-rw-r--r-- | modules/mail/e-mail-shell-sidebar.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/mail/e-mail-shell-sidebar.c b/modules/mail/e-mail-shell-sidebar.c index 30dd9d5e51..1b55f0524f 100644 --- a/modules/mail/e-mail-shell-sidebar.c +++ b/modules/mail/e-mail-shell-sidebar.c @@ -211,14 +211,6 @@ mail_shell_sidebar_size_request (GtkWidget *widget, GtkRequisition *requisition) requisition->width = MAX (requisition->width, ink_rect.width + border); } -static void -mail_shell_sidebar_size_allocate (GtkWidget *widget, GtkAllocation *allocation) -{ - GTK_WIDGET_CLASS (parent_class)->size_allocate (widget, allocation); - g_print ("EMailShellSidebar allocation: %dx%d\n", allocation->width, allocation->height); -} - - static guint32 mail_shell_sidebar_check_state (EShellSidebar *shell_sidebar) { @@ -248,7 +240,6 @@ mail_shell_sidebar_class_init (EMailShellSidebarClass *class) widget_class = GTK_WIDGET_CLASS (class); widget_class->size_request = mail_shell_sidebar_size_request; - widget_class->size_allocate = mail_shell_sidebar_size_allocate; shell_sidebar_class = E_SHELL_SIDEBAR_CLASS (class); shell_sidebar_class->check_state = mail_shell_sidebar_check_state; |