2007-05-23 Murray Cumming <murrayc@murrayc.com>
authorMurray Cumming <murrayc@murrayc.com>
Wed, 23 May 2007 16:45:57 +0000 (16:45 +0000)
committerMurray Cumming <murrayc@murrayc.com>
Wed, 23 May 2007 16:45:57 +0000 (16:45 +0000)
* src/modest-ui-actions.c: (set_active_account_from_tny_account):
        Removed some debug printfs.

pmo-trunk-r1964

ChangeLog2
src/modest-ui-actions.c

index 6e70845..0186523 100644 (file)
@@ -1,5 +1,10 @@
 2007-05-23  Murray Cumming  <murrayc@murrayc.com>
 
+       * src/modest-ui-actions.c: (set_active_account_from_tny_account):
+       Removed some debug printfs.
+
+2007-05-23  Murray Cumming  <murrayc@murrayc.com>
+
        Modest on-disk outbox directories are now here, for instance:
        $HOME/.modest/outboxes/<account-id-1>/outbox
        $HOME/.modest/outboxes/<account-id-2>/outbox
index b2c6eb2..d835202 100644 (file)
@@ -1112,11 +1112,9 @@ set_active_account_from_tny_account (TnyAccount *account,
        TnyAccount *modest_server_account = modest_server_account = 
                modest_tny_account_store_get_tny_account_by_id  (modest_runtime_get_account_store (), 
                                                                 server_acc_name);
-       printf("%s: modest_server_account name=%s\n", __FUNCTION__, tny_account_get_id (modest_server_account));
-
-       const gchar *modest_acc_name = modest_tny_account_get_parent_modest_account_name_for_server_account (modest_server_account);
-       printf("%s: modest_acc_name=%s\n", __FUNCTION__, modest_acc_name);
-
+       
+       const gchar *modest_acc_name = 
+               modest_tny_account_get_parent_modest_account_name_for_server_account (modest_server_account);
        modest_window_set_active_account (window, modest_acc_name);
        g_object_unref (modest_server_account);
 }