diff options
author | Roy Marples <roy@marples.name> | 2010-04-27 22:31:05 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-04-27 22:31:05 +0800 |
commit | d6fd193f8f4487a10a3fbde7a5fff0bd21c54b21 (patch) | |
tree | 3fb95f3f0cbeabd3690723883ac49e01b5ccb728 /plugins/subject-thread | |
parent | bb8ce8052ef2eb6553b889086ca280431d088107 (diff) | |
download | gsoc2013-evolution-d6fd193f8f4487a10a3fbde7a5fff0bd21c54b21.tar.gz gsoc2013-evolution-d6fd193f8f4487a10a3fbde7a5fff0bd21c54b21.tar.zst gsoc2013-evolution-d6fd193f8f4487a10a3fbde7a5fff0bd21c54b21.zip |
Bug #610495 - Plugins should define e_plugin_lib_enable
Diffstat (limited to 'plugins/subject-thread')
-rw-r--r-- | plugins/subject-thread/subject-thread.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/subject-thread/subject-thread.c b/plugins/subject-thread/subject-thread.c index 6c008c71ae..26012d3461 100644 --- a/plugins/subject-thread/subject-thread.c +++ b/plugins/subject-thread/subject-thread.c @@ -36,6 +36,13 @@ #define GCONF_KEY "/apps/evolution/mail/display/thread_subject" GtkWidget *org_gnome_subject_thread_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data); +gint e_plugin_lib_enable (EPlugin *ep, gint enable); + +gint +e_plugin_lib_enable (EPlugin *ep, gint enable) +{ + return 0; +} static void toggled_cb (GtkWidget *widget, EConfig *config) |