aboutsummaryrefslogtreecommitdiffstats
path: root/mail/component-factory.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-15 01:20:52 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-15 01:20:52 +0800
commit1669f167476f98339194e04e3a628860c22a9153 (patch)
treededcf4a701516aea0cfedc5f04235a2a469c025c /mail/component-factory.c
parent25fbeda5e9e6f353ff65b5c2232bdf450a700b41 (diff)
downloadgsoc2013-evolution-1669f167476f98339194e04e3a628860c22a9153.tar
gsoc2013-evolution-1669f167476f98339194e04e3a628860c22a9153.tar.gz
gsoc2013-evolution-1669f167476f98339194e04e3a628860c22a9153.tar.bz2
gsoc2013-evolution-1669f167476f98339194e04e3a628860c22a9153.tar.lz
gsoc2013-evolution-1669f167476f98339194e04e3a628860c22a9153.tar.xz
gsoc2013-evolution-1669f167476f98339194e04e3a628860c22a9153.tar.zst
gsoc2013-evolution-1669f167476f98339194e04e3a628860c22a9153.zip
Want a (GWeakNotify) cast here, not (GWeakNotify *).
* component-factory.c (owner_set_cb): Want a (GWeakNotify) cast here, not (GWeakNotify *). * subscribe-dialog.c (fete_init): g_object_set() instead of gtk_object_set(). (populate_store_list): Likewise. (menu_item_selected): g_object_get_data() instead of gtk_object_get_data(). * message-list.c (message_list_create_extras): g_object_set() instead of gtk_object_set(). * message-browser.c (message_browser_message_list_built): g_object_get_data() instead of gtk_object_get_data(). * mail-vfolder.c (edit_rule_response): g_object_get_data() instead of gtk_object_get_data(). * mail-summary.c (generate_folder_summaries): g_object_unref() the context instead of gtk_object_destroy(). * mail-local.c (reconfigure_response): g_object_get_data() instead of gtk_object_get_data(). * mail-display.c (pixbuf_gen_idle): g_object_unref() the GdkPixbuf loader instead of gtk_object_destroy(). (pixbuf_gen_idle): Likewise. (embeddable_destroy_cb): Likewise. * mail-config-druid.c (mail_config_druid_destroy): No need to gtk_object_destroy() the GladeXML object. (construct): g_object_set() instead of gtk_object_set(). * folder-browser.c (folder_browser_gui_init): g_object_get_data() instead of gtk_object_get_data(). svn path=/trunk/; revision=18752
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r--mail/component-factory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c
index 15349686fa..3a3d3b727c 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -752,7 +752,7 @@ owner_set_cb (EvolutionShellComponent *shell_component,
/* FIXME: should we ref this? */
global_shell_client = shell_client;
- g_object_weak_ref(G_OBJECT(shell_client), (GWeakNotify *)shell_client_destroy, NULL);
+ g_object_weak_ref(G_OBJECT(shell_client), (GWeakNotify)shell_client_destroy, NULL);
evolution_dir = g_strdup (evolution_homedir);
mail_session_init ();