From d35abb451f163aa7583594a6bd99fa3480c6e9e6 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 20 Feb 2004 16:42:47 +0000 Subject: Remove the debug message here. * mail-component.c (set_prop): Remove the debug message here. svn path=/trunk/; revision=24818 --- mail/ChangeLog | 4 ++++ mail/mail-component.c | 7 +------ 2 files changed, 5 insertions(+), 6 deletions(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 4b92768251..45d3b38948 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2004-02-20 Dan Winship + + * mail-component.c (set_prop): Remove the debug message here. + 2004-02-20 Not Zed * mail-vfolder.c (mail_vfolder_add_uri): fix for vfolder-rule api diff --git a/mail/mail-component.c b/mail/mail-component.c index d5bf6a34ea..f2d2304736 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -268,15 +268,10 @@ static void set_prop(BonoboPropertyBag *bag, const BonoboArg *arg, guint arg_id, CORBA_Environment *ev, gpointer user_data) { EMFolderView *view = (EMFolderView *)bonobo_control_get_widget (user_data); - const gchar *uri; switch (arg_id) { case PROPERTY_FOLDER_URI_IDX: - uri = BONOBO_ARG_GET_STRING (arg); - - g_warning ("XXX setting uri blah=\"%s\"\n", uri); - - em_folder_view_set_folder_uri (view, uri); + em_folder_view_set_folder_uri (view, BONOBO_ARG_GET_STRING (arg)); break; default: g_warning ("Unhandled arg %d\n", arg_id); -- cgit