diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-08-21 16:06:12 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-08-21 16:06:12 +0800 |
commit | 781aa2407ff6c8a11fd364dcaf48d55163ae1780 (patch) | |
tree | 1865e01f48f15890b751059c4dcec22e4a42b9f6 /calendar/gui | |
parent | f5f9c6a39d31b8484be7032418ebbde92ebdcb68 (diff) | |
download | gsoc2013-evolution-781aa2407ff6c8a11fd364dcaf48d55163ae1780.tar.gz gsoc2013-evolution-781aa2407ff6c8a11fd364dcaf48d55163ae1780.tar.zst gsoc2013-evolution-781aa2407ff6c8a11fd364dcaf48d55163ae1780.zip |
Fixes #346549
svn path=/trunk/; revision=32610
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/task-details-page.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/task-details-page.c b/calendar/gui/dialogs/task-details-page.c index aa3b26abef..a3fc8a2152 100644 --- a/calendar/gui/dialogs/task-details-page.c +++ b/calendar/gui/dialogs/task-details-page.c @@ -237,8 +237,7 @@ priority_index_to_value (TaskEditorPriority priority) retval = 7; break; default: - retval = -1; - g_assert_not_reached (); + retval = 0; break; } |