diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-03 21:24:44 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-03 21:24:44 +0800 |
commit | fdedccf06a806442d0f3e34a3a3229429168d6b3 (patch) | |
tree | ff954823d915e9b8cebe55c61d1dd14853c0a796 /calendar/gui/dialogs/send-comp.c | |
parent | 5e6adad066135ece0b95e2d08ab4e937538fda5f (diff) | |
download | gsoc2013-evolution-fdedccf06a806442d0f3e34a3a3229429168d6b3.tar.gz gsoc2013-evolution-fdedccf06a806442d0f3e34a3a3229429168d6b3.tar.zst gsoc2013-evolution-fdedccf06a806442d0f3e34a3a3229429168d6b3.zip |
** Fixes bug #347767
svn path=/trunk/; revision=33637
Diffstat (limited to 'calendar/gui/dialogs/send-comp.c')
-rw-r--r-- | calendar/gui/dialogs/send-comp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/send-comp.c b/calendar/gui/dialogs/send-comp.c index e9f6275400..525f5b92c2 100644 --- a/calendar/gui/dialogs/send-comp.c +++ b/calendar/gui/dialogs/send-comp.c @@ -92,7 +92,9 @@ send_component_prompt_subject (GtkWindow *parent, ECal *client, ECalComponent *c id = "calendar:prompt-send-no-subject-task"; break; case E_CAL_COMPONENT_JOURNAL: - return TRUE; /* we don't do summaries directly */ + id = "calendar:prompt-send-no-subject-memo"; + break; + default: g_message ("send_component_prompt_subject(): " "Cannot handle object of type %d", vtype); |