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/e-meeting-attendee.c | |
parent | f2db40b45db31c41660bb692bc91f90c49c6939e (diff) | |
download | gsoc2013-evolution-79f8ecbd0d28dfb399e2275a3a18d8ed96415232.tar gsoc2013-evolution-79f8ecbd0d28dfb399e2275a3a18d8ed96415232.tar.gz gsoc2013-evolution-79f8ecbd0d28dfb399e2275a3a18d8ed96415232.tar.bz2 gsoc2013-evolution-79f8ecbd0d28dfb399e2275a3a18d8ed96415232.tar.lz gsoc2013-evolution-79f8ecbd0d28dfb399e2275a3a18d8ed96415232.tar.xz 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/e-meeting-attendee.c')
-rw-r--r-- | calendar/gui/e-meeting-attendee.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-meeting-attendee.c b/calendar/gui/e-meeting-attendee.c index 926cbd4925..b346b85154 100644 --- a/calendar/gui/e-meeting-attendee.c +++ b/calendar/gui/e-meeting-attendee.c @@ -875,7 +875,7 @@ e_meeting_attendee_add_busy_period (EMeetingAttendee *ia, priv->has_calendar_info = TRUE; priv->busy_periods_sorted = FALSE; - period_in_days = g_date_julian (&period.end.date) - g_date_julian (&period.start.date) + 1; + period_in_days = g_date_get_julian (&period.end.date) - g_date_get_julian (&period.start.date) + 1; priv->longest_period_in_days = MAX (priv->longest_period_in_days, period_in_days); return TRUE; |