diff options
author | Larry Ewing <lewing@ximian.com> | 2004-04-15 12:53:02 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2004-04-15 12:53:02 +0800 |
commit | 675cc414bdbeb9b83a2ff5add57b7abe9545f9dd (patch) | |
tree | d6dd7631b282b5595c189a82fc244f9ef642ec7e /calendar/gui/calendar-component.c | |
parent | 33b23bed4b2997c321f6def7d1e04f6fc6a8a4f3 (diff) | |
download | gsoc2013-evolution-675cc414bdbeb9b83a2ff5add57b7abe9545f9dd.tar.gz gsoc2013-evolution-675cc414bdbeb9b83a2ff5add57b7abe9545f9dd.tar.zst gsoc2013-evolution-675cc414bdbeb9b83a2ff5add57b7abe9545f9dd.zip |
fix missing parameters, wow that was a mess.
2004-04-14 Larry Ewing <lewing@ximian.com>
* gui/calendar-component.c (selector_tree_drag_motion): fix
missing parameters, wow that was a mess.
* gui/dialogs/calendar-setup.glade: add the new "new" dialogs,
remove the old druids.
* gui/dialogs/calendar-setup.c (calendar_setup_new_calendar): use
the new dialogs, colors are still not functional.
(calendar_setup_new_task_list): use the new dialogs, with no colors.
svn path=/trunk/; revision=25474
Diffstat (limited to 'calendar/gui/calendar-component.c')
-rw-r--r-- | calendar/gui/calendar-component.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 828c751fe4..50eadcc55a 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -637,7 +637,9 @@ static gboolean selector_tree_drag_motion (GtkWidget *widget, GdkDragContext *context, int x, - int y) + int y, + guint time, + gpointer user_data) { GtkTreePath *path = NULL; gpointer data = NULL; |