diff options
author | Milan Crha <mcrha@redhat.com> | 2007-11-05 18:03:02 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-11-05 18:03:02 +0800 |
commit | abf34a4520db2714e688fcdc01f3e5cbb890bc73 (patch) | |
tree | 55c9a141a81af5be89ec7cb38a5ac64aeee5fc11 /calendar/gui/e-day-view.c | |
parent | 92d0fb79a748036a21403539a8c296eafb2e2613 (diff) | |
download | gsoc2013-evolution-abf34a4520db2714e688fcdc01f3e5cbb890bc73.tar.gz gsoc2013-evolution-abf34a4520db2714e688fcdc01f3e5cbb890bc73.tar.zst gsoc2013-evolution-abf34a4520db2714e688fcdc01f3e5cbb890bc73.zip |
** Fix for bug #318604
2007-11-05 Milan Crha <mcrha@redhat.com>
** Fix for bug #318604
* Enable source when adding event to disabled source.
* gui/gnome-cal.h: (gnome_calendar_emit_user_created_signal):
New helper function which will store used calendar before emitting
signal "user_created" on the instance to GnomeCalendar for later use
and unset it right after the emit.
* gui/gnome-cal.c: (struct _GnomeCalendarPrivate): New member to store
used ECal before emitting "user_created" signal.
* gui/gnome-cal.c: (gnome_calendar_emit_user_created_signal),
(user_created_cb): Implementation of new helper function and enabling
last used source instead of default one on "user_created" signal.
* gui/e-day-view.c: (e_day_view_on_editing_stopped):
* gui/e-week-view.c: (e_week_view_on_editing_stopped):
* gui/e-calendar-view.c: (object_created_cb): Use our new
helper function to emit "user_created" signal with proper ECal.
* gui/e-calendar-table.h: (struct _ECalendarTable):
* gui/e-memo-table.h: (struct _EMemoTable): New member added.
* gui/e-calendar-table.c: (e_calendar_table_init):
* gui/e-memo-table.c: (e_memo_table_init): Initialize member to NULL.
* gui/tasks-component.c: (object_created_cb), (create_new_todo):
* gui/memos-component.c: (object_created_cb), (create_new_memo):
Add new callback function to notice new object created and emit
"user_created" signal with proper ECal stored in ECalendarTable.
* gui/e-tasks.c: (user_created_cb):
* gui/e-memos.c: (user_created_cb): Use previously stored ECal, which
has been used to create event, instead of using default ECal.
svn path=/trunk/; revision=34495
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r-- | calendar/gui/e-day-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index 350061e2c3..9422378d44 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -7745,7 +7745,7 @@ e_day_view_on_editing_stopped (EDayView *day_view, if (!e_cal_create_object (client, icalcomp, NULL, NULL)) g_message (G_STRLOC ": Could not create the object!"); else - g_signal_emit_by_name (day_view, "user_created"); + gnome_calendar_emit_user_created_signal (day_view, e_calendar_view_get_calendar (E_CALENDAR_VIEW (day_view)), client); /* we remove the object since we either got the update from the server or failed */ e_day_view_remove_event_cb (day_view, day, event_num, NULL); @@ -7902,7 +7902,7 @@ e_day_view_on_editing_stopped (EDayView *day_view, if (!e_cal_create_object (client, icalcomp, NULL, NULL)) g_message (G_STRLOC ": Could not create the object!"); else - g_signal_emit_by_name (day_view, "user_created"); + gnome_calendar_emit_user_created_signal (day_view, e_calendar_view_get_calendar (E_CALENDAR_VIEW (day_view)), client); /* we remove the object since we either got the update from the server or failed */ e_day_view_remove_event_cb (day_view, day, event_num, NULL); |