summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Noël <corentin@elementary.io>2019-06-20 04:11:28 -0400
committerCorentin Noël <corentin@elementary.io>2019-06-20 04:14:28 -0400
commita1f32f8acce173b89a022a11ae27d9f7885491cc (patch)
tree87a85229fd27f0e97a7e5c2f6002faba13c445a5
parentcd2b82d57d1bd7075a2a6d47d4aa52f334165af5 (diff)
downloadlibical-git-a1f32f8acce173b89a022a11ae27d9f7885491cc.tar.gz
[libical-glib] Remove out annotation of ICalTimezone.get_utc_offset*
-rw-r--r--src/libical-glib/api/i-cal-timezone.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libical-glib/api/i-cal-timezone.xml b/src/libical-glib/api/i-cal-timezone.xml
index ca8d136f..4d5d9263 100644
--- a/src/libical-glib/api/i-cal-timezone.xml
+++ b/src/libical-glib/api/i-cal-timezone.xml
@@ -121,14 +121,14 @@
</method>
<method name="i_cal_timezone_get_utc_offset" corresponds="icaltimezone_get_utc_offset" kind="get" since="1.0">
<parameter type="ICalTimezone *" name="zone" annotation="nullable" comment="The given #ICalTimezone."/>
- <parameter type="ICalTime *" name="tt" annotation="nullable, out" native_op="POINTER" comment="The local time."/>
- <parameter type="gint *" name="is_daylight" annotation="out" comment="whether it is day light."/>
+ <parameter type="ICalTime *" name="tt" annotation="nullable" native_op="POINTER" comment="The local time."/>
+ <parameter type="gint *" name="is_daylight" annotation="out, optional" comment="whether it is day light."/>
<returns type="gint" comment="UTC offset of the @zone"/>
<comment>Calculates the UTC offset of a given local time in the given timezone. It is the number of seconds to add to UTC to get local time. The is_daylight flag is set to 1 if the time is in daylight-savings time.</comment>
</method>
<method name="i_cal_timezone_get_utc_offset_of_utc_time" corresponds="icaltimezone_get_utc_offset_of_utc_time" kind="get" since="1.0">
<parameter type="ICalTimezone *" name="zone" annotation="nullable" comment="The given #ICalTimezone."/>
- <parameter type="ICalTime *" name="tt" annotation="out" native_op="POINTER" comment="The local time."/>
+ <parameter type="ICalTime *" name="tt" native_op="POINTER" comment="The local time."/>
<parameter type="gint *" name="is_daylight" annotation="out, optional" comment="whether it is day light, can be %NULL"/>
<returns type="gint" comment="UTC offset of the @zone"/>
<comment>Calculates the UTC offset of a given UTC time in the given timezone. It is the number of seconds to add to UTC to get local time. The is_daylight flag is set to 1 if the time is in daylight-savings time.</comment>