From 73cee7c6c6528d126e30333278323ffe838f129f Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Mon, 10 Sep 2007 08:41:15 +0000 Subject: [PATCH] * Fixed a typo * Uncommented some code pmo-trunk-r3247 --- src/maemo/modest-main-window.c | 20 ++++++++++---------- src/widgets/modest-header-view.c | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/maemo/modest-main-window.c b/src/maemo/modest-main-window.c index 328f5fa..ebd9fde 100644 --- a/src/maemo/modest-main-window.c +++ b/src/maemo/modest-main-window.c @@ -181,10 +181,10 @@ static void set_at_least_one_account_visible(ModestMainWindow *self); static void -modest_main_window_on_send_queue_status_canged (ModestTnySendQueue *send_queue, - gchar *msg_id, - guint status, - gpointer user_data); +modest_main_window_on_send_queue_status_changed (ModestTnySendQueue *send_queue, + gchar *msg_id, + guint status, + gpointer user_data); /* list my signals */ enum { @@ -1540,7 +1540,7 @@ modest_main_window_show_toolbar (ModestWindow *self, /* Connect 'status_changed' signal of this new send-queue */ priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers, G_OBJECT (send_queue), "status_changed", - G_CALLBACK (modest_main_window_on_send_queue_status_canged), + G_CALLBACK (modest_main_window_on_send_queue_status_changed), self); } @@ -1584,10 +1584,10 @@ modest_main_window_show_toolbar (ModestWindow *self, } static void -modest_main_window_on_send_queue_status_canged (ModestTnySendQueue *send_queue, - gchar *msg_id, - guint status, - gpointer user_data) +modest_main_window_on_send_queue_status_changed (ModestTnySendQueue *send_queue, + gchar *msg_id, + guint status, + gpointer user_data) { ModestMainWindowPrivate *priv = NULL; TnyFolderStore *selected_folder = NULL; @@ -1644,7 +1644,7 @@ on_account_inserted (TnyAccountStore *accoust_store, /* Connect 'status_changed' signal of this new send-queue */ priv->sighandlers = modest_signal_mgr_connect (priv->sighandlers,G_OBJECT (send_queue), "status_changed", - G_CALLBACK (modest_main_window_on_send_queue_status_canged), + G_CALLBACK (modest_main_window_on_send_queue_status_changed), user_data); /* Free */ diff --git a/src/widgets/modest-header-view.c b/src/widgets/modest-header-view.c index 03e1ed8..7698550 100644 --- a/src/widgets/modest-header-view.c +++ b/src/widgets/modest-header-view.c @@ -1597,8 +1597,8 @@ folder_monitor_update (TnyFolderObserver *self, helper->self = MODEST_HEADER_VIEW(self); helper->change = g_object_ref(change); -/* if (folder != NULL) */ -/* tny_folder_poke_status (folder); */ + if (folder != NULL) + tny_folder_poke_status (folder); idle_notify_headers_count_changed (helper); idle_notify_headers_count_changed_destroy (helper); -- 1.7.9.5