From: Murray Cumming Date: Sun, 29 Apr 2007 10:13:13 +0000 (+0000) Subject: 2007-04-27 Murray Cumming X-Git-Tag: git_migration_finished~3747 X-Git-Url: http://git.maemo.org/git/?a=commitdiff_plain;ds=sidebyside;h=b49b9e376bbeb25dd0afe2502b0da8c25ee8bb64;p=modest 2007-04-27 Murray Cumming * src/modest-tny-account-store.c: (modest_tny_account_store_init): Remove the add_transport_account_func and add_store_account_func vfunc implementations, which were empty, because these vfuncs have been removed from TnyAccountStore. This fixes the build. pmo-trunk-r1713 --- diff --git a/ChangeLog2 b/ChangeLog2 index eda8440..6bb884f 100644 --- a/ChangeLog2 +++ b/ChangeLog2 @@ -1,5 +1,12 @@ 2007-04-27 Murray Cumming + * src/modest-tny-account-store.c: (modest_tny_account_store_init): + Remove the add_transport_account_func and add_store_account_func vfunc implementations, + which were empty, because these vfuncs have been removed from TnyAccountStore. + This fixes the build. + +2007-04-27 Murray Cumming + * src/maemo/modest-main-window.c: (modest_main_window_show_toolbar): Check that a toolbar item is not NULL before showing/hiding it. Added TODO because it probably should not be NULL. diff --git a/src/modest-tny-account-store.c b/src/modest-tny-account-store.c index 14be515..70b2257 100644 --- a/src/modest-tny-account-store.c +++ b/src/modest-tny-account-store.c @@ -633,26 +633,6 @@ modest_tny_account_store_alert (TnyAccountStore *self, TnyAlertType type, } - -static void -modest_tny_account_store_add_store_account (TnyAccountStore *self, - TnyStoreAccount *account) -{ - /* we should not need this...*/ - g_printerr ("modest: add_store_account_func not implemented\n"); -} - - -static void -modest_tny_account_store_add_transport_account (TnyAccountStore *self, - TnyTransportAccount *account) -{ - /* we should not need this...*/ - g_printerr ("modest: add_transport_account_func not implemented\n"); -} - - - static void modest_tny_account_store_init (gpointer g, gpointer iface_data) { @@ -664,10 +644,6 @@ modest_tny_account_store_init (gpointer g, gpointer iface_data) klass->get_accounts_func = modest_tny_account_store_get_accounts; - klass->add_transport_account_func = - modest_tny_account_store_add_transport_account; - klass->add_store_account_func = - modest_tny_account_store_add_store_account; klass->get_cache_dir_func = modest_tny_account_store_get_cache_dir; klass->get_device_func =