aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/itip-utils.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-12-02 11:06:02 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-12-02 11:06:02 +0800
commit3041d1943a01406abf5672d8759213472e61298d (patch)
tree2387b33f3e2a1e123d9dd1f097cf08c63ea2d215 /calendar/gui/itip-utils.c
parentbe82b4b9ec5b202bd533b81d798bee91df503b89 (diff)
downloadgsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.gz
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.bz2
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.lz
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.xz
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.tar.zst
gsoc2013-evolution-3041d1943a01406abf5672d8759213472e61298d.zip
run fix.sh over this.
2002-11-27 Not Zed <NotZed@Ximian.com> * gui/itip-utils.[ch]: run fix.sh over this. * gui/dialogs/*.[ch]: run fix.sh over all of this. 2002-11-26 Richard Li <Richard.Li@Sun.COM> * cal-client/cal-client.c (cal_client_construct): removed extra call to CORBA_exception_init. 2002-11-22 Not Zed <NotZed@Ximian.com> * gui/dialogs/delete-comp.c (delete_component_dialog): Changed e_messagebox -> gtk_messagedialog. svn path=/trunk/; revision=18972
Diffstat (limited to 'calendar/gui/itip-utils.c')
-rw-r--r--calendar/gui/itip-utils.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c
index ea45c813e3..6bf95c9732 100644
--- a/calendar/gui/itip-utils.c
+++ b/calendar/gui/itip-utils.c
@@ -340,7 +340,7 @@ comp_from (CalComponentItipMethod method, CalComponent *comp)
case CAL_COMPONENT_METHOD_ADD:
cal_component_get_organizer (comp, &organizer);
if (organizer.value == NULL) {
- e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
+ e_notice (NULL, GTK_MESSAGE_ERROR,
_("An organizer must be set."));
return NULL;
}
@@ -375,7 +375,7 @@ comp_to_list (CalComponentItipMethod method, CalComponent *comp, GList *users)
cal_component_get_attendee_list (comp, &attendees);
len = g_slist_length (attendees);
if (len <= 0) {
- e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
+ e_notice (NULL, GTK_MESSAGE_ERROR,
_("At least one attendee is necessary"));
cal_component_free_attendee_list (attendees);
return NULL;
@@ -411,7 +411,7 @@ comp_to_list (CalComponentItipMethod method, CalComponent *comp, GList *users)
case CAL_COMPONENT_METHOD_DECLINECOUNTER:
cal_component_get_organizer (comp, &organizer);
if (organizer.value == NULL) {
- e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
+ e_notice (NULL, GTK_MESSAGE_ERROR,
_("An organizer must be set."));
return NULL;
}
@@ -617,7 +617,7 @@ comp_server_send (CalComponentItipMethod method, CalComponent *comp, CalClient *
retval = TRUE;
} else if (result == CAL_CLIENT_SEND_BUSY) {
- e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, error_msg);
+ e_notice (NULL, GTK_MESSAGE_ERROR, error_msg);
retval = FALSE;
}
@@ -748,7 +748,7 @@ comp_minimal (CalComponent *comp, gboolean attendee)
cal_component_set_attendee_list (clone, attendees);
if (!comp_limit_attendees (clone)) {
- e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
+ e_notice (NULL, GTK_MESSAGE_ERROR,
_("You must be an attendee of the event."));
goto error;
}