diff options
author | JP Rosevear <jpr@novell.com> | 2004-10-21 02:55:29 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-10-21 02:55:29 +0800 |
commit | 435e8893664733275ef5426c166b21f831433614 (patch) | |
tree | 33c01fa721be1798484616fdd64c5c9c50796a65 | |
parent | a08c50bb5704346ce90add5ad917da8a7a997ce2 (diff) | |
download | gsoc2013-evolution-435e8893664733275ef5426c166b21f831433614.tar gsoc2013-evolution-435e8893664733275ef5426c166b21f831433614.tar.gz gsoc2013-evolution-435e8893664733275ef5426c166b21f831433614.tar.bz2 gsoc2013-evolution-435e8893664733275ef5426c166b21f831433614.tar.lz gsoc2013-evolution-435e8893664733275ef5426c166b21f831433614.tar.xz gsoc2013-evolution-435e8893664733275ef5426c166b21f831433614.tar.zst gsoc2013-evolution-435e8893664733275ef5426c166b21f831433614.zip |
update factory name
2004-10-20 JP Rosevear <jpr@novell.com>
* subject-thread/org-gnome-subject-thread.eplug.in: update factory
name
* subject-thread/subject-thread.c: ditto
svn path=/trunk/; revision=27659
-rw-r--r-- | plugins/subject-thread/org-gnome-subject-thread.eplug.in | 2 | ||||
-rw-r--r-- | plugins/subject-thread/subject-thread.c | 4 |
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; |