diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-03-30 01:29:46 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-03-30 01:29:46 +0800 |
commit | 72f0d0c0001ed7de14640579b9473fed811b866c (patch) | |
tree | a666a4db9172c1fa9879092b534b3613d81e5e68 /plugins/save-calendar | |
parent | b12d14e70117e2287cf3b11137c1f2636c09f4d9 (diff) | |
download | gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.tar.gz gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.tar.zst gsoc2013-evolution-72f0d0c0001ed7de14640579b9473fed811b866c.zip |
Fix "incompatible pointer type" warnings (#360619).
2007-03-29 Matthew Barnes <mbarnes@redhat.com>
* calendar/gui/e-day-view.c:
* calendar/gui/e-week-view.c:
* calendar/gui/tasks-control.c:
* composer/e-msg-composer-select-file.c:
* mail/em-account-editor.c:
* mail/em-folder-view.c:
* mail/em-format-html-display.c:
* mail/em-format-html.c:
* mail/em-format.h:
* mail/em-mailer-prefs.c:
* mail/em-vfolder-rule.c:
* mail/mail-ops.c:
* mail/mail-send-recv.c:
* mail/message-list.c:
* plugins/bbdb/gaimbuddies.c:
* plugins/itip-formatter/itip-formatter.c:
* plugins/save-calendar/save-calendar.c:
* shell/e-shell-window.c:
* widgets/misc/e-icon-entry.c:
* widgets/table/e-table-header-utils.c:
* widgets/table/e-table-item.c:
* widgets/table/e-tree-header-item.c:
* widgets/table/e-tree-table-adapter.c:
Fix "incompatible pointer type" warnings (#360619).
svn path=/trunk/; revision=33339
Diffstat (limited to 'plugins/save-calendar')
-rw-r--r-- | plugins/save-calendar/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/save-calendar/save-calendar.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/save-calendar/ChangeLog b/plugins/save-calendar/ChangeLog index 4e19e4e72d..4b7391009a 100644 --- a/plugins/save-calendar/ChangeLog +++ b/plugins/save-calendar/ChangeLog @@ -1,3 +1,8 @@ +2007-03-29 Matthew Barnes <mbarnes@redhat.com> + + * save-calendar.c: + Fix "incompatible pointer type" warnings (#360619). + 2007-02-20 Chenthill Palanisamy <pchenthill@novell.com> Fixes #238093 (bnc) diff --git a/plugins/save-calendar/save-calendar.c b/plugins/save-calendar/save-calendar.c index 7a7e4289b7..ad86106d99 100644 --- a/plugins/save-calendar/save-calendar.c +++ b/plugins/save-calendar/save-calendar.c @@ -175,7 +175,7 @@ ask_destination_and_save (EPlugin *ep, ECalPopupTargetSource *target, ECalSource gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (dialog), extra_widget); - gtk_file_chooser_set_local_only (dialog, FALSE); + gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (dialog), FALSE); #else dialog = gtk_file_selection_new (_("Select destination file")); gtk_box_pack_start (GTK_BOX (GTK_FILE_SELECTION (dialog)->main_vbox), extra_widget, FALSE, TRUE, 0); |