diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2006-12-04 23:41:30 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2006-12-04 23:41:30 +0800 |
commit | 79f8ecbd0d28dfb399e2275a3a18d8ed96415232 (patch) | |
tree | e6275d5b92d89797b43bf24c7abfa07dac9f0aa4 /calendar/gui/goto.c | |
parent | f2db40b45db31c41660bb692bc91f90c49c6939e (diff) | |
download | gsoc2013-evolution-79f8ecbd0d28dfb399e2275a3a18d8ed96415232.tar.gz gsoc2013-evolution-79f8ecbd0d28dfb399e2275a3a18d8ed96415232.tar.zst gsoc2013-evolution-79f8ecbd0d28dfb399e2275a3a18d8ed96415232.zip |
Fixes bug #357970
2006-12-04 Matthew Barnes <mbarnes@redhat.com>
Fixes bug #357970
* gui/e-alarm-list.c:
* gui/e-calendar-table.c:
* gui/e-day-view.c:
* gui/e-meeting-attendee.c:
* gui/e-meeting-store.c:
* gui/e-meeting-time-sel-item.c:
* gui/e-meeting-time-sel.c:
* gui/e-week-view-main-item.c:
* gui/e-week-view.c:
* gui/gnome-cal.c:
* gui/goto.c:
* gui/dialogs/event-page.c:
* gui/dialogs/task-page.c:
Don't call deprecated GLib / GDK functions.
svn path=/trunk/; revision=33045
Diffstat (limited to 'calendar/gui/goto.c')
-rw-r--r-- | calendar/gui/goto.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/goto.c b/calendar/gui/goto.c index 6397a02282..ed8b9f2fca 100644 --- a/calendar/gui/goto.c +++ b/calendar/gui/goto.c @@ -91,9 +91,9 @@ ecal_event (ECalendarItem *calitem, gpointer user_data) e_calendar_item_get_selection (calitem, &start_date, &end_date); - tt.year = g_date_year (&start_date); - tt.month = g_date_month (&start_date); - tt.day = g_date_day (&start_date); + tt.year = g_date_get_year (&start_date); + tt.month = g_date_get_month (&start_date); + tt.day = g_date_get_day (&start_date); et = icaltime_as_timet_with_zone (tt, gnome_calendar_get_timezone (dlg->gcal)); |