diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-09-30 04:40:35 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-09-30 04:40:35 +0800 |
commit | 1af3fe8fe0e326a71c78e87caa68c4532765f9eb (patch) | |
tree | 70ef4037490b856bab369e08baffb4c3dd652318 /mail | |
parent | 7dbb51cfc93566fa7fd16f857b5a5fb5b97c28e3 (diff) | |
download | gsoc2013-evolution-1af3fe8fe0e326a71c78e87caa68c4532765f9eb.tar.gz gsoc2013-evolution-1af3fe8fe0e326a71c78e87caa68c4532765f9eb.tar.zst gsoc2013-evolution-1af3fe8fe0e326a71c78e87caa68c4532765f9eb.zip |
Oops, put the arguments in the right order.
2003-09-29 Jeffrey Stedfast <fejj@ximian.com>
* em-format.c (emf_init): Oops, put the arguments in the right order.
svn path=/trunk/; revision=22757
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/em-format.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 311e98b922..fa60a8087f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2003-09-29 Jeffrey Stedfast <fejj@ximian.com> + + * em-format.c (emf_init): Oops, put the arguments in the right order. + 2003-09-25 Jeffrey Stedfast <fejj@ximian.com> * mail-account-gui.c (mail_account_gui_save): Allow any file: uri diff --git a/mail/em-format.c b/mail/em-format.c index 7c1d8eea86..5cac389dc9 100644 --- a/mail/em-format.c +++ b/mail/em-format.c @@ -96,7 +96,7 @@ emf_init(GObject *o) gconf_client_add_dir (priv->gconf, "/apps/evolution/mail/format/charset", GCONF_CLIENT_PRELOAD_ONELEVEL, NULL); priv->charset_id = gconf_client_notify_add (priv->gconf, "/apps/evolution/mail/format/charset", - gconf_charset_changed, NULL, NULL, emf); + gconf_charset_changed, emf, NULL, NULL); priv->gconf_charset = gconf_client_get_string (priv->gconf, "/apps/evolution/mail/format/charset", NULL); emf->inline_table = g_hash_table_new(NULL, NULL); |