diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-02-14 04:31:50 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-02-14 04:31:50 +0800 |
commit | 31dc41be3718523052dc3d96cf3b603c68e81b55 (patch) | |
tree | 448d132398c6c79594ddc35b1eb7c13bdc1a9a29 /mail/mail-config-factory.c | |
parent | afac6edb53f68a1c1c510eeaa1360c5a34e2e659 (diff) | |
download | gsoc2013-evolution-31dc41be3718523052dc3d96cf3b603c68e81b55.tar.gz gsoc2013-evolution-31dc41be3718523052dc3d96cf3b603c68e81b55.tar.zst gsoc2013-evolution-31dc41be3718523052dc3d96cf3b603c68e81b55.zip |
#include <stdio.h>
2003-02-13 Jeffrey Stedfast <fejj@ximian.com>
* e-searching-tokenizer.c: #include <stdio.h>
* mail-config-factory.c: #include <string.h>
* mail-config-druid.c (identity_prepare): Use
gtk_editable_select_region() since gtk_entry_select_region() has
been deprecated.
(construct): Use gtk_window_set_resizable() instead of
gtk_window_set_policy().
(wizard_free): account_destroy() is no longer around, use
g_object_unref() instead. (how did this even compile before?)
* mail-account-gui.c (mail_account_gui_build_extra_conf): Use
gtk_label_set_text_with_mnemonic() instead of
gtk_label_parse_uline() as the latter has been deprecated.
svn path=/trunk/; revision=19905
Diffstat (limited to 'mail/mail-config-factory.c')
-rw-r--r-- | mail/mail-config-factory.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/mail-config-factory.c b/mail/mail-config-factory.c index 8780973535..bda05e83ad 100644 --- a/mail/mail-config-factory.c +++ b/mail/mail-config-factory.c @@ -25,6 +25,8 @@ #include <config.h> #endif +#include <string.h> + #include "mail-accounts.h" #include "mail-preferences.h" #include "mail-composer-prefs.h" @@ -93,7 +95,7 @@ mail_config_control_factory_cb (BonoboGenericFactory *factory, const char *compo } data->prefs = prefs; - g_object_ref((prefs)); + g_object_ref (prefs); gtk_widget_show_all (prefs); |