diff options
author | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-10-13 18:55:34 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-10-13 18:55:34 +0800 |
commit | cb3e037f8f55f95892104326807d9988be87fbe4 (patch) | |
tree | acac7b63e7a8b1ea4f37273363cb423dbff491ed /modules | |
parent | b77871e4fd7a4464e3a2e4e458f0d10e71805a02 (diff) | |
parent | ee5ca188d56abc91ca9fce034322466d5b0f4b9f (diff) | |
download | gsoc2013-evolution-cb3e037f8f55f95892104326807d9988be87fbe4.tar gsoc2013-evolution-cb3e037f8f55f95892104326807d9988be87fbe4.tar.gz gsoc2013-evolution-cb3e037f8f55f95892104326807d9988be87fbe4.tar.bz2 gsoc2013-evolution-cb3e037f8f55f95892104326807d9988be87fbe4.tar.lz gsoc2013-evolution-cb3e037f8f55f95892104326807d9988be87fbe4.tar.xz gsoc2013-evolution-cb3e037f8f55f95892104326807d9988be87fbe4.tar.zst gsoc2013-evolution-cb3e037f8f55f95892104326807d9988be87fbe4.zip |
Merge branch 'master' into wip/gsettings
Diffstat (limited to 'modules')
-rw-r--r-- | modules/addressbook/autocompletion-config.c | 2 | ||||
-rw-r--r-- | modules/online-accounts/e-online-accounts-google.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/modules/addressbook/autocompletion-config.c b/modules/addressbook/autocompletion-config.c index be9ddcc427..52a9195b44 100644 --- a/modules/addressbook/autocompletion-config.c +++ b/modules/addressbook/autocompletion-config.c @@ -196,7 +196,7 @@ acc_get_general_page (EConfig *ec, itembox = add_section (vbox, _("Address formatting"), FALSE); - widget = gtk_check_button_new_with_label ( + widget = gtk_check_button_new_with_mnemonic ( _("_Format address according to standard of its destination country")); g_object_bind_property ( shell_settings, "enable-address-formatting", diff --git a/modules/online-accounts/e-online-accounts-google.c b/modules/online-accounts/e-online-accounts-google.c index 04d7f9f39a..666c407511 100644 --- a/modules/online-accounts/e-online-accounts-google.c +++ b/modules/online-accounts/e-online-accounts-google.c @@ -249,6 +249,8 @@ online_accounts_google_sync_mail (GoaObject *goa_object, g_object_unref (account); } + e_account_list_save (account_list); + g_object_unref (goa_account); g_object_unref (goa_mail); } @@ -327,6 +329,7 @@ online_accounts_google_sync_calendar (GoaObject *goa_object, } g_object_unref (source_group); + g_object_unref (source_list); g_object_unref (goa_account); } @@ -387,6 +390,7 @@ online_accounts_google_sync_contacts (GoaObject *goa_object, } g_object_unref (source_group); + g_object_unref (source_list); g_object_unref (goa_account); } |