aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/subject-thread/org-gnome-subject-thread.eplug.in2
-rw-r--r--plugins/subject-thread/subject-thread.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/subject-thread/org-gnome-subject-thread.eplug.in b/plugins/subject-thread/org-gnome-subject-thread.eplug.in
index f4416cc862..ac1df66951 100644
--- a/plugins/subject-thread/org-gnome-subject-thread.eplug.in
+++ b/plugins/subject-thread/org-gnome-subject-thread.eplug.in
@@ -4,7 +4,7 @@
<hook class="org.gnome.evolution.mail.config:1.0">
<group target="prefs">
- <item type="item" path="00.general/10.display/80.subject_thread" label="Thread messages by subject" factory="subject_thread_factory"/>
+ <item type="item" path="00.general/10.display/80.subject_thread" label="Thread messages by subject" factory="org_gnome_subject_thread_factory"/>
</group>
</hook>
</e-plugin>
diff --git a/plugins/subject-thread/subject-thread.c b/plugins/subject-thread/subject-thread.c
index e464c01f4c..870ba02f5b 100644
--- a/plugins/subject-thread/subject-thread.c
+++ b/plugins/subject-thread/subject-thread.c
@@ -33,7 +33,7 @@
#define GCONF_KEY "/apps/evolution/mail/display/thread_subject"
-GtkWidget *subject_thread_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data);
+GtkWidget *org_gnome_subject_thread_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data);
static void
toggled_cb (GtkWidget *widget, EConfig *config)
@@ -45,7 +45,7 @@ toggled_cb (GtkWidget *widget, EConfig *config)
}
GtkWidget *
-subject_thread_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data)
+org_gnome_subject_thread_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data)
{
GtkWidget *check;
EMConfigTargetPrefs *target = (EMConfigTargetPrefs *) hook_data->config->target;