From 49f5998cf5234483552ffb0af8deb9c952ba8103 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 7 Oct 2015 13:36:53 +0100 Subject: calendar: Remove incorrect (allow-none) annotations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gint64s can’t be allow-none. Spotted by Zeeshan Ali. This fixes building against the latest versions of gobject-introspection, which are stricter about warning about this kind of thing. --- gdata/services/calendar/gdata-calendar-query.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdata/services/calendar/gdata-calendar-query.c b/gdata/services/calendar/gdata-calendar-query.c index 8198b897..1d4c3918 100644 --- a/gdata/services/calendar/gdata-calendar-query.c +++ b/gdata/services/calendar/gdata-calendar-query.c @@ -504,8 +504,8 @@ gdata_calendar_query_new (const gchar *q) /** * gdata_calendar_query_new_with_limits: * @q: (allow-none): a query string, or %NULL - * @start_min: (allow-none): a starting time for the event period, or %NULL - * @start_max: (allow-none): an ending time for the event period, or %NULL + * @start_min: a starting time for the event period, or -1 + * @start_max: an ending time for the event period, or -1 * * Creates a new #GDataCalendarQuery with its #GDataQuery:q property set to @q, and the time limits @start_min and @start_max * applied. -- cgit v1.2.1