diff options
author | Not Zed <NotZed@Ximian.com> | 2005-08-24 11:15:26 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-08-24 11:15:26 +0800 |
commit | db4eb8ad23b7601552cb73d88b4dbd04305b0006 (patch) | |
tree | e4eb8b41014e449b99a584e45f1ef35e3e448146 /plugins/groupwise-features/junk-mail-settings.c | |
parent | ba263d1aceb348eb6a28bb6a07d3f2e9abc351a8 (diff) | |
download | gsoc2013-evolution-db4eb8ad23b7601552cb73d88b4dbd04305b0006.tar.gz gsoc2013-evolution-db4eb8ad23b7601552cb73d88b4dbd04305b0006.tar.zst gsoc2013-evolution-db4eb8ad23b7601552cb73d88b4dbd04305b0006.zip |
return the right type. (proxy_soap_login): fix pointer cast.
2005-08-23 Not Zed <NotZed@Ximian.com>
* proxy-login.c (proxy_get_password): return the right type.
(proxy_soap_login): fix pointer cast.
(proxy_login_add_new_store): fix pointer cast.
(proxy_login_setup_tree_view): fix callback cast.
(org_gnome_proxy_account_login): fix prototype to match use.
* junk-settings.c (user_selected): fix calling.
(junk_settings_construct): more stupid casts.
* junk-mail-settings.c (junk_mail_settings): casts.
* install-shared.c (install_folder_response): constify item_id.
(install_folder_response): remove unused.
(org_gnome_popup_wizard): fixed numerous problems with this,
over-copying data around, not referencing information properly,
freeing potentially unset variables, etc etc.
(accept_free): add a free function.
* share-folder.c (notification_clicked): fix a multitude of busted
casts.
(user_selected): fix broken calling conventions, busted style.
(share_folder_construct): fix more busted/missing casts.
* share-folder-common.c: add missing header.
svn path=/trunk/; revision=30232
Diffstat (limited to 'plugins/groupwise-features/junk-mail-settings.c')
-rw-r--r-- | plugins/groupwise-features/junk-mail-settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/groupwise-features/junk-mail-settings.c b/plugins/groupwise-features/junk-mail-settings.c index 5a361fb573..c5d1dc1529 100644 --- a/plugins/groupwise-features/junk-mail-settings.c +++ b/plugins/groupwise-features/junk-mail-settings.c @@ -91,13 +91,13 @@ junk_mail_settings (EPopup *ep, EPopupItem *item, void *data) gtk_box_pack_start ((GtkBox *) box, w, FALSE, FALSE, 6); junk_tab = junk_settings_new (cnc); - w = junk_tab->vbox; + w = (GtkWidget *)junk_tab->vbox; gtk_box_pack_start ((GtkBox *) box, w, FALSE, FALSE, 6); /*We might have to add more options for settings i.e. more pages*/ while (page_count > 0 ){ notebook = gtk_notebook_new (); - gtk_notebook_append_page (notebook, box, NULL); + gtk_notebook_append_page ((GtkNotebook *)notebook, box, NULL); gtk_box_pack_start ((GtkBox *) ((GtkDialog *) dialog)->vbox, notebook, TRUE, TRUE, 0); } |