aboutsummaryrefslogtreecommitdiffstats
path: root/modules/settings/evolution-module-settings.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-04-20 23:22:58 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-04-21 01:15:27 +0800
commit60386356e322c0ebe3a0101a616752c0e557491e (patch)
treea115b4f28bddd84ec037584c8f2902e1884c4994 /modules/settings/evolution-module-settings.c
parent5e1934425ddedb3848a66f16100e4ee1ea12aeb1 (diff)
downloadgsoc2013-evolution-60386356e322c0ebe3a0101a616752c0e557491e.tar
gsoc2013-evolution-60386356e322c0ebe3a0101a616752c0e557491e.tar.gz
gsoc2013-evolution-60386356e322c0ebe3a0101a616752c0e557491e.tar.bz2
gsoc2013-evolution-60386356e322c0ebe3a0101a616752c0e557491e.tar.lz
gsoc2013-evolution-60386356e322c0ebe3a0101a616752c0e557491e.tar.xz
gsoc2013-evolution-60386356e322c0ebe3a0101a616752c0e557491e.tar.zst
gsoc2013-evolution-60386356e322c0ebe3a0101a616752c0e557491e.zip
Remove "Search for sender photograph only in local address books".
This was added as part of bug 360184 but no justification was given for the "local-only" part. My Spidey sense tells me it was a hack- around for the old implementation's tendency to freeze the UI while searching for a photograph. So the "local-only" option really just meant "don't freeze the UI for very long, please". The new EPhotoCache-based implementation in 3.8 NEVER freezes the UI, so the "local-only" option is no longer needed. If a remote address book is slow or unresponsive we simply cancel the async photo lookup when the user moves on to another email.
Diffstat (limited to 'modules/settings/evolution-module-settings.c')
-rw-r--r--modules/settings/evolution-module-settings.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/settings/evolution-module-settings.c b/modules/settings/evolution-module-settings.c
index 94caf05a6e..52d55f454b 100644
--- a/modules/settings/evolution-module-settings.c
+++ b/modules/settings/evolution-module-settings.c
@@ -28,7 +28,6 @@
#include "e-settings-meeting-store.h"
#include "e-settings-meeting-time-selector.h"
#include "e-settings-name-selector-entry.h"
-#include "e-settings-photo-cache.h"
#include "e-settings-spell-entry.h"
#include "e-settings-web-view.h"
#include "e-settings-web-view-gtkhtml.h"
@@ -53,7 +52,6 @@ e_module_load (GTypeModule *type_module)
e_settings_meeting_store_type_register (type_module);
e_settings_meeting_time_selector_type_register (type_module);
e_settings_name_selector_entry_type_register (type_module);
- e_settings_photo_cache_type_register (type_module);
e_settings_spell_entry_type_register (type_module);
e_settings_web_view_type_register (type_module);
e_settings_web_view_gtkhtml_type_register (type_module);