diff options
author | Punit Jain <jpunit@novell.com> | 2010-04-28 14:27:16 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@novell.com> | 2010-04-28 14:27:16 +0800 |
commit | 91751c40d4f2b1fadcce4040defb066e30409a10 (patch) | |
tree | a8212f04d634977fd88c16d29a64375606ea8be1 /calendar/gui | |
parent | ba4d6184e5781dec59c78eb8d2b0a4a5784e40fd (diff) | |
download | gsoc2013-evolution-91751c40d4f2b1fadcce4040defb066e30409a10.tar.gz gsoc2013-evolution-91751c40d4f2b1fadcce4040defb066e30409a10.tar.zst gsoc2013-evolution-91751c40d4f2b1fadcce4040defb066e30409a10.zip |
Bug #609052 - Proper warning should be shown.
when saving calendar items without summary.
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/send-comp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/send-comp.c b/calendar/gui/dialogs/send-comp.c index d69fd0bdc9..4a9f80ef21 100644 --- a/calendar/gui/dialogs/send-comp.c +++ b/calendar/gui/dialogs/send-comp.c @@ -185,11 +185,11 @@ send_component_prompt_subject (GtkWindow *parent, ECal *client, ECalComponent *c switch (vtype) { case E_CAL_COMPONENT_EVENT: - id = "calendar:prompt-send-no-subject-calendar"; + id = "calendar:prompt-save-no-subject-calendar"; break; case E_CAL_COMPONENT_TODO: - id = "calendar:prompt-send-no-subject-task"; + id = "calendar:prompt-save-no-subject-task"; break; case E_CAL_COMPONENT_JOURNAL: id = "calendar:prompt-send-no-subject-memo"; |