GNOME Bugzilla – Bug 613764
build fails in calendar/gui/dialogs/select-source-dialog.c
Last modified: 2010-03-24 17:54:22 UTC
Did a clean rebuild of all of evolution gnome-2-28 and I had to insert the following to get it to compile: diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index 44936c2..5546457 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -1465,7 +1465,7 @@ transfer_selected_items (ECalendarView *cal_view, gboolean remove_item) return; /* prompt the user for destination source */ - destination_source = select_source_dialog ((GtkWindow *) gtk_widget_get_toplevel ((GtkWidget *)cal_view), E_CAL_SOURCE_TYPE_EVENT); + destination_source = select_source_dialog ((GtkWindow *) gtk_widget_get_toplevel ((GtkWidget *)cal_view), E_CAL_SOURCE_TYPE_EVENT, 0); if (!destination_source) return;
select_source_dialog() only takes two arguments. You must have an unofficial patch applied or something.
(In reply to comment #1) > select_source_dialog() only takes two arguments. > > You must have an unofficial patch applied or something. Right, it's bug 529331, https://bugzilla.gnome.org/show_bug.cgi?id=529331. It only got committed to 2.29. Milan?