diff options
author | JP Rosevear <jpr@ximian.com> | 2001-01-23 09:54:42 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-01-23 09:54:42 +0800 |
commit | bbda4d56c31cd0b21edd5c198ac6da6bea2988ad (patch) | |
tree | 0a021aec83f04a90b2e00f65adbfc10cd4ce952e /calendar/gui/event-editor.c | |
parent | 7befb4dc1e76aea9bd54126d4e7fc0d47bf4a51c (diff) | |
download | gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.gz gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.bz2 gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.lz gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.xz gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.zst gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.zip |
compile new stuff
2001-01-22 JP Rosevear <jpr@ximian.com>
* gui/dialogs/Makefile.am: compile new stuff
* gui/dialogs/task-editor.c (prompt_to_save_changes): use new
standard dialog
* gui/event-editor.c (prompt_to_save_changes): ditto
* gui/dialogs/save-comp.h: new header
* gui/dialogs/save-comp.c (save_component_dialog): shows the save
dialog
svn path=/trunk/; revision=7733
Diffstat (limited to 'calendar/gui/event-editor.c')
-rw-r--r-- | calendar/gui/event-editor.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c index 8b7e04c1c7..46ed3d0051 100644 --- a/calendar/gui/event-editor.c +++ b/calendar/gui/event-editor.c @@ -33,6 +33,7 @@ #include <gal/widgets/e-categories.h> #include <cal-util/timeutil.h> #include "dialogs/delete-comp.h" +#include "dialogs/save-comp.h" #include "calendar-config.h" #include "event-editor.h" #include "e-meeting-edit.h" @@ -3265,17 +3266,7 @@ prompt_to_save_changes (EventEditor *ee) if (!priv->changed) return TRUE; - dialog = gnome_message_box_new (_("Do you want to save changes?"), - GNOME_MESSAGE_BOX_QUESTION, - GNOME_STOCK_BUTTON_YES, - GNOME_STOCK_BUTTON_NO, - GNOME_STOCK_BUTTON_CANCEL, - NULL); - - gnome_dialog_set_parent (GNOME_DIALOG (dialog), - GTK_WINDOW (priv->app)); - - switch (gnome_dialog_run_and_close (GNOME_DIALOG (dialog))) { + switch (save_component_dialog (GTK_WINDOW (priv->app))) { case 0: /* Save */ /* FIXME: If an error occurs here, we should popup a dialog and then return FALSE. */ |