diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-08-11 00:47:57 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-08-11 01:03:30 +0800 |
commit | e8e4661811e980102e5569f804c0f439aa7b3c32 (patch) | |
tree | 30a8bbfcde078d20e67594c635816081bef5397f /modules/mail | |
parent | 6a791bb6e813ec5ec42b0d72eca775208b877e06 (diff) | |
download | gsoc2013-evolution-e8e4661811e980102e5569f804c0f439aa7b3c32.tar gsoc2013-evolution-e8e4661811e980102e5569f804c0f439aa7b3c32.tar.gz gsoc2013-evolution-e8e4661811e980102e5569f804c0f439aa7b3c32.tar.bz2 gsoc2013-evolution-e8e4661811e980102e5569f804c0f439aa7b3c32.tar.lz gsoc2013-evolution-e8e4661811e980102e5569f804c0f439aa7b3c32.tar.xz gsoc2013-evolution-e8e4661811e980102e5569f804c0f439aa7b3c32.tar.zst gsoc2013-evolution-e8e4661811e980102e5569f804c0f439aa7b3c32.zip |
Remove the settings capplet.
The evolution-settings capplet was originally designed for Anjal, it was
used in MeeGo as part of the Express Mode effort, but doesn't really fit
in GNOME 3 nowadays (nor did it really fit in GNOME 2, in my opinion).
This is pretty clearly dead weight at this point. The MeeGo developers
have disappeared, and the remaining Evolution developers are not and do
not intend to maintain it. Plus it doesn't even build currently.
Diffstat (limited to 'modules/mail')
-rw-r--r-- | modules/mail/Makefile.am | 5 | ||||
-rw-r--r-- | modules/mail/e-mail-shell-backend.c | 17 |
2 files changed, 0 insertions, 22 deletions
diff --git a/modules/mail/Makefile.am b/modules/mail/Makefile.am index 7d7f298b6c..74391b28ce 100644 --- a/modules/mail/Makefile.am +++ b/modules/mail/Makefile.am @@ -49,11 +49,6 @@ module_mail_la_SOURCES = \ em-network-prefs.c \ em-network-prefs.h -if WITH_CAPPLET -libevolution_mail_settings_la = \ - $(top_builddir)/capplet/settings/libevolution-mail-settings.la -endif - module_mail_la_LIBADD = \ $(top_builddir)/libemail-utils/libemail-utils.la \ $(top_builddir)/libemail-engine/libemail-engine.la \ diff --git a/modules/mail/e-mail-shell-backend.c b/modules/mail/e-mail-shell-backend.c index 2079d28cdc..8b00ccf0a2 100644 --- a/modules/mail/e-mail-shell-backend.c +++ b/modules/mail/e-mail-shell-backend.c @@ -33,10 +33,6 @@ #include <shell/e-shell.h> #include <shell/e-shell-window.h> -#ifdef WITH_CAPPLET -#include <capplet/settings/mail-capplet-shell.h> -#endif - #include <composer/e-msg-composer.h> #include <widgets/misc/e-preferences-window.h> @@ -793,11 +789,6 @@ e_mail_shell_backend_new_account (EMailShellBackend *mail_shell_backend, EMailBackend *backend; EMailSession *session; -#ifdef WITH_CAPPLET - EShell *shell; - EShellBackend *shell_backend; -#endif /* WITH_CAPPLET */ - g_return_if_fail (mail_shell_backend != NULL); g_return_if_fail (E_IS_MAIL_SHELL_BACKEND (mail_shell_backend)); @@ -811,14 +802,6 @@ e_mail_shell_backend_new_account (EMailShellBackend *mail_shell_backend, backend = E_MAIL_BACKEND (mail_shell_backend); session = e_mail_backend_get_session (backend); -#ifdef WITH_CAPPLET - shell_backend = E_SHELL_BACKEND (mail_shell_backend); - shell = e_shell_backend_get_shell (shell_backend); - - if (e_shell_get_express_mode (shell)) - assistant = mail_capplet_shell_new (0, TRUE, FALSE); -#endif /* WITH_CAPPLET */ - if (assistant == NULL) assistant = e_mail_config_assistant_new (session); |