diff options
author | Parthasarathi S A <sparthasarathi@novell.com> | 2004-08-06 18:05:23 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-08-06 18:05:23 +0800 |
commit | faea9f4360005a0869a62e4da5d459a6067ca9c5 (patch) | |
tree | 0e186a5afbcb2dba1a0c70370328897a1a636cc4 /calendar/calendar-errors.xml | |
parent | b58607ea6a24dc9f69115520950215bb01a2a220 (diff) | |
download | gsoc2013-evolution-faea9f4360005a0869a62e4da5d459a6067ca9c5.tar.gz gsoc2013-evolution-faea9f4360005a0869a62e4da5d459a6067ca9c5.tar.zst gsoc2013-evolution-faea9f4360005a0869a62e4da5d459a6067ca9c5.zip |
Fix for bug #61673. The function takes two arguments now, instead of one.
2004-08-05 Parthasarathi S A <sparthasarathi@novell.com>
Fix for bug #61673.
* calendar/gui/dialogs/save_comp.c(save_component_dialog):
The function takes two arguments now, instead of one. The second
argument is the pointer to the ECalComponent from which the component
type can be determined. Based on the component type the corresponding
error message is displayed.
* calendar/gui/dialogs/save_comp.h:
Function definition updated for save_component_dialog.
* calendar/gui/dialogs/comp_editor.c(prompt_to_save_changes):
passing the ECalComponent pointer to the 'save_component_dialog' function
* calendar/calendar-errors.xml: New error message string for task included
* calendar/calendar-errors.xml.h
svn path=/trunk/; revision=26839
Diffstat (limited to 'calendar/calendar-errors.xml')
-rw-r--r-- | calendar/calendar-errors.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/calendar/calendar-errors.xml b/calendar/calendar-errors.xml index 14c36de2e2..3e38b7e71a 100644 --- a/calendar/calendar-errors.xml +++ b/calendar/calendar-errors.xml @@ -115,6 +115,15 @@ <button label="Save Changes" response="GTK_RESPONSE_YES"/> </error> + <error id="prompt-save-task" type="question" default="GTK_RESPONSE_YES"> + <title>Save Task</title> + <primary>Would you like to save your changes to this task?</primary> + <secondary>You have made changes to this task, but not yet saved them.</secondary> + <button label="Discard Changes" response="GTK_RESPONSE_NO"/> + <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> + <button label="Save Changes" response="GTK_RESPONSE_YES"/> + </error> + <error id="prompt-meeting-invite" type="question" default="GTK_RESPONSE_YES"> <primary>Would you like to send meeting invitations to participants?</primary> <secondary>Email invitations will be sent to all participants and allow them to RSVP.</secondary> |