diff options
author | Priyanshu Raj <Priyanshu@students.iiit.net> | 2004-06-01 01:46:44 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-06-01 01:46:44 +0800 |
commit | 332244cee52698b2f8f78a98cd5387f740a0f2a7 (patch) | |
tree | 4cfd7d26369126406a96e8cd0ab7e8eeaa246b4f /calendar/gui/e-calendar-view.c | |
parent | 18117c5aef48d40d41a38e402a45f0d4170176d4 (diff) | |
download | gsoc2013-evolution-332244cee52698b2f8f78a98cd5387f740a0f2a7.tar.gz gsoc2013-evolution-332244cee52698b2f8f78a98cd5387f740a0f2a7.tar.zst gsoc2013-evolution-332244cee52698b2f8f78a98cd5387f740a0f2a7.zip |
*Bug #51968 "Invite others.." button confusing in Appointment editor
2004-05-31 Priyanshu Raj <Priyanshu@students.iiit.net>
*Bug #51968 "Invite others.." button confusing in Appointment
editor dialog(Fixed)"
svn path=/trunk/; revision=26133
Diffstat (limited to 'calendar/gui/e-calendar-view.c')
-rw-r--r-- | calendar/gui/e-calendar-view.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index ecf9924d7e..9ae3c1796c 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -359,7 +359,7 @@ e_calendar_view_add_event (ECalendarView *cal_view, ECal *client, time_t dtstart if (itip_organizer_is_user (comp, client) && send_component_dialog ((GtkWindow *) gtk_widget_get_toplevel (GTK_WIDGET (cal_view)), - client, comp, TRUE)) { + client, comp, TRUE)) { itip_send_comp (E_CAL_COMPONENT_METHOD_REQUEST, comp, client, NULL); } @@ -762,7 +762,7 @@ clipboard_get_text_cb (GtkClipboard *clipboard, const gchar *text, ECalendarView child_kind = icalcomponent_isa (subcomp); if (child_kind == ICAL_VEVENT_COMPONENT) e_calendar_view_add_event (cal_view, client, selected_time_start, - default_zone, subcomp, in_top_canvas); + default_zone, subcomp, in_top_canvas); else if (child_kind == ICAL_VTIMEZONE_COMPONENT) { icaltimezone *zone; @@ -1628,7 +1628,7 @@ e_calendar_view_modify_and_send (ECalComponent *comp, { if (e_cal_modify_object (client, e_cal_component_get_icalcomponent (comp), mod, NULL)) { if (itip_organizer_is_user (comp, client) && - send_component_dialog (toplevel, client, comp, new)) + send_component_dialog (toplevel, client, comp, new)) itip_send_comp (E_CAL_COMPONENT_METHOD_REQUEST, comp, client, NULL); } else { g_message (G_STRLOC ": Could not update the object!"); |