aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/task-editor.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-01-23 09:54:42 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-01-23 09:54:42 +0800
commitbbda4d56c31cd0b21edd5c198ac6da6bea2988ad (patch)
tree0a021aec83f04a90b2e00f65adbfc10cd4ce952e /calendar/gui/dialogs/task-editor.c
parent7befb4dc1e76aea9bd54126d4e7fc0d47bf4a51c (diff)
downloadgsoc2013-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/dialogs/task-editor.c')
-rw-r--r--calendar/gui/dialogs/task-editor.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index 74849a66d4..f58a9fbdb6 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -38,6 +38,7 @@
#include <widgets/misc/e-dateedit.h>
#include <cal-util/timeutil.h>
#include "delete-comp.h"
+#include "save-comp.h"
#include "task-editor.h"
#include "../calendar-config.h"
#include "../widget-util.h"
@@ -1294,17 +1295,7 @@ prompt_to_save_changes (TaskEditor *tedit)
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. */