From 085e18d4372f2f04e346000c3d33b82c9d7292a0 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Thu, 13 Jul 2000 21:35:57 +0000 Subject: conduit based on the calendar conduit. this conduit syncs a pilot's ToDoDB * conduits/todo/todo-conduit.c: conduit based on the calendar conduit. this conduit syncs a pilot's ToDoDB database to wombat's list of "todo" events. * gui/gncal-todo.c (simple_todo_editor): set todo's priority control based on value from ical object during edit. svn path=/trunk/; revision=4156 --- calendar/gui/gncal-todo.c | 1 + 1 file changed, 1 insertion(+) (limited to 'calendar/gui') diff --git a/calendar/gui/gncal-todo.c b/calendar/gui/gncal-todo.c index ad2c1f4068..7ef0689cc1 100644 --- a/calendar/gui/gncal-todo.c +++ b/calendar/gui/gncal-todo.c @@ -196,6 +196,7 @@ simple_todo_editor (GncalTodo *todo, iCalObject *ico) gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (pri_spin), TRUE); gtk_spin_button_set_wrap (GTK_SPIN_BUTTON (pri_spin), FALSE); gtk_spin_button_set_snap_to_ticks (GTK_SPIN_BUTTON (pri_spin), FALSE); + gtk_spin_button_set_value (GTK_SPIN_BUTTON (pri_spin), (gfloat) ico->priority); gtk_box_pack_start (GTK_BOX (pri_box), pri_spin, FALSE, FALSE, 0); gtk_widget_show (pri_spin); -- cgit