aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-03-25 23:49:44 +0800
committerDan Winship <danw@src.gnome.org>2003-03-25 23:49:44 +0800
commitd8cac9eeafdd511b5de38f3da47dd25582c0e33f (patch)
tree83d008e1bbf930d717adc54be845ae74efbe3c02 /calendar/gui/dialogs/comp-editor.c
parentfea6083abffc47a4f9fd2d8988e924ad19a394c3 (diff)
downloadgsoc2013-evolution-d8cac9eeafdd511b5de38f3da47dd25582c0e33f.tar
gsoc2013-evolution-d8cac9eeafdd511b5de38f3da47dd25582c0e33f.tar.gz
gsoc2013-evolution-d8cac9eeafdd511b5de38f3da47dd25582c0e33f.tar.bz2
gsoc2013-evolution-d8cac9eeafdd511b5de38f3da47dd25582c0e33f.tar.lz
gsoc2013-evolution-d8cac9eeafdd511b5de38f3da47dd25582c0e33f.tar.xz
gsoc2013-evolution-d8cac9eeafdd511b5de38f3da47dd25582c0e33f.tar.zst
gsoc2013-evolution-d8cac9eeafdd511b5de38f3da47dd25582c0e33f.zip
Update for e_notice move
* gui/itip-utils.c: Update for e_notice move * gui/tasks-control.c (confirm_expunge): Move the code that used to be e_gnome_dialog_set_parent here, since it was marked deprecated and this was the only place using it. * gui/dialogs/comp-editor.c: Update for e_notice move (page_changed_cb, page_summary_changed_cb, page_dates_changed_cb): Pass a parent_window to e_notice. * gui/dialogs/meeting-page.c: Update for e_notice move. (meeting_page_fill_component, meeting_page_fill_component, popup_delegate_cb): Pass a parent_window to e_notice svn path=/trunk/; revision=20503
Diffstat (limited to 'calendar/gui/dialogs/comp-editor.c')
-rw-r--r--calendar/gui/dialogs/comp-editor.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 27dd2ea8c2..c8d89eae7e 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -38,7 +38,6 @@
#include <bonobo/bonobo-ui-container.h>
#include <bonobo/bonobo-ui-util.h>
#include <gal/widgets/e-unicode.h>
-#include <gal/widgets/e-gui-utils.h>
#include <e-util/e-dialog-utils.h>
#include <evolution-shell-component-utils.h>
#include "../print.h"
@@ -650,11 +649,11 @@ comp_editor_append_page (CompEditor *editor,
gtk_notebook_append_page (priv->notebook, page_widget, label_widget);
/* Listen for things happening on the page */
- g_signal_connect((page), "changed",
+ g_signal_connect(page, "changed",
G_CALLBACK (page_changed_cb), editor);
- g_signal_connect((page), "summary_changed",
+ g_signal_connect(page, "summary_changed",
G_CALLBACK (page_summary_changed_cb), editor);
- g_signal_connect((page), "dates_changed",
+ g_signal_connect(page, "dates_changed",
G_CALLBACK (page_dates_changed_cb), editor);
/* Listen for when the page is mapped/unmapped so we can
@@ -1328,7 +1327,7 @@ page_changed_cb (GtkObject *obj, gpointer data)
priv->changed = TRUE;
if (!priv->warned && priv->existing_org && !priv->user_org) {
- e_notice (NULL, GTK_MESSAGE_INFO,
+ e_notice (editor, GTK_MESSAGE_INFO,
_("Changes made to this item may be discarded if an update arrives"));
priv->warned = TRUE;
}
@@ -1352,7 +1351,7 @@ page_summary_changed_cb (GtkObject *obj, const char *summary, gpointer data)
priv->changed = TRUE;
if (!priv->warned && priv->existing_org && !priv->user_org) {
- e_notice (NULL, GTK_MESSAGE_INFO,
+ e_notice (editor, GTK_MESSAGE_INFO,
_("Changes made to this item may be discarded if an update arrives"));
priv->warned = TRUE;
}
@@ -1376,7 +1375,7 @@ page_dates_changed_cb (GtkObject *obj,
priv->changed = TRUE;
if (!priv->warned && priv->existing_org && !priv->user_org) {
- e_notice (NULL, GTK_MESSAGE_INFO,
+ e_notice (editor, GTK_MESSAGE_INFO,
_("Changes made to this item may be discarded if an update arrives"));
priv->warned = TRUE;
}