diff options
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/task-editor.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c index a91278b84a..6b79896e2e 100644 --- a/calendar/gui/dialogs/task-editor.c +++ b/calendar/gui/dialogs/task-editor.c @@ -1252,6 +1252,9 @@ priority_index_to_value (TaskEditorPriority priority) case PRIORITY_LOW: retval = 7; break; + default: + g_assert_not_reached (); + break; } return retval; |