diff options
author | Seth Alves <alves@src.gnome.org> | 2000-07-14 05:35:57 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-07-14 05:35:57 +0800 |
commit | 085e18d4372f2f04e346000c3d33b82c9d7292a0 (patch) | |
tree | 0c5de958780ef7609e754a893e67591e0af08d8d /calendar/gui | |
parent | 98c56f99098bcc023524e6f162ce4a216298f06a (diff) | |
download | gsoc2013-evolution-085e18d4372f2f04e346000c3d33b82c9d7292a0.tar gsoc2013-evolution-085e18d4372f2f04e346000c3d33b82c9d7292a0.tar.gz gsoc2013-evolution-085e18d4372f2f04e346000c3d33b82c9d7292a0.tar.bz2 gsoc2013-evolution-085e18d4372f2f04e346000c3d33b82c9d7292a0.tar.lz gsoc2013-evolution-085e18d4372f2f04e346000c3d33b82c9d7292a0.tar.xz gsoc2013-evolution-085e18d4372f2f04e346000c3d33b82c9d7292a0.tar.zst gsoc2013-evolution-085e18d4372f2f04e346000c3d33b82c9d7292a0.zip |
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
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/gncal-todo.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |