summaryrefslogtreecommitdiff
path: root/src/libical-glib/api/i-cal-reqstat.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/libical-glib/api/i-cal-reqstat.xml')
-rw-r--r--src/libical-glib/api/i-cal-reqstat.xml28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/libical-glib/api/i-cal-reqstat.xml b/src/libical-glib/api/i-cal-reqstat.xml
index 4b3f3023..f05b1282 100644
--- a/src/libical-glib/api/i-cal-reqstat.xml
+++ b/src/libical-glib/api/i-cal-reqstat.xml
@@ -15,18 +15,18 @@
-->
<structure namespace="ICal" name="Reqstat" native="struct icalreqstattype" is_bare="true" default_native="i_cal_reqstat_new_default ()">
<method name="i_cal_reqstat_new_from_string" corresponds="icalreqstattype_from_string" kind="constructor" since="1.0">
- <parameter type="const gchar *" name="str" comment="A string."/>
+ <parameter type="const gchar *" name="str" comment="A string"/>
<returns type="ICalReqstat *" annotation="transfer full" comment="The newly created #ICalReqstat."/>
- <comment xml:space="preserve">Create a #ICalReqstat from string.</comment>
+ <comment xml:space="preserve">Creates a #ICalReqstat from string.</comment>
</method>
<method name="i_cal_reqstat_to_string" corresponds="icalreqstattype_as_string_r" since="1.0">
- <parameter type="ICalReqstat *" name="stat" comment="A #ICalReqstat."/>
+ <parameter type="ICalReqstat *" name="stat" comment="A #ICalReqstat"/>
<returns type="gchar *" annotation="transfer full" comment="A string."/>
- <comment xml:space="preserve">Convert #ICalReqstat to a string representation.</comment>
+ <comment xml:space="preserve">Converts #ICalReqstat to a string representation.</comment>
</method>
<method name="i_cal_reqstat_new_default" corresponds="CUSTOM" kind="private" annotation="skip" since="1.0">
<returns type="struct icalreqstattype" annotation="transfer full" comment="The newly created #ICalReqstat" />
- <comment xml:space="preserve">Create a new default #ICalReqstat</comment>
+ <comment xml:space="preserve">Creates a new default #ICalReqstat.</comment>
<custom> struct icalreqstattype reqstattype;
reqstattype.code = ICAL_UNKNOWN_STATUS;
reqstattype.desc = NULL;
@@ -34,30 +34,30 @@
return reqstattype;</custom>
</method>
<method name="i_cal_reqstat_get_code" corresponds="CUSTOM" kind="get" since="1.0">
- <parameter type="ICalReqstat *" name="reqstat" comment="The #ICalReqstat."/>
+ <parameter type="ICalReqstat *" name="reqstat" comment="The #ICalReqstat"/>
<returns type="ICalRequestStatus" comment="The code of @reqstat."/>
- <comment>Get the code of #ICalReqstat.</comment>
+ <comment>Gets the code of #ICalReqstat.</comment>
<custom> g_return_val_if_fail (reqstat != NULL &amp;&amp; I_CAL_IS_REQSTAT (reqstat), I_CAL_UNKNOWN_STATUS);
return (ICalRequestStatus) (((struct icalreqstattype *)i_cal_object_get_native ((ICalObject *)reqstat))->code);</custom>
</method>
<method name="i_cal_reqstat_set_code" corresponds="CUSTOM" kind="set" since="1.0">
- <parameter type="ICalReqstat *" name="reqstat" comment="The #ICalReqstat."/>
- <parameter type="ICalRequestStatus" name="code" comment="The code of @reqstat."/>
- <comment>Set the code of #ICalReqstat.</comment>
+ <parameter type="ICalReqstat *" name="reqstat" comment="The #ICalReqstat"/>
+ <parameter type="ICalRequestStatus" name="code" comment="The code of @reqstat"/>
+ <comment>Sets the code of #ICalReqstat.</comment>
<custom> g_return_if_fail (reqstat != NULL &amp;&amp; I_CAL_IS_REQSTAT (reqstat));
((struct icalreqstattype *)i_cal_object_get_native ((ICalObject *)reqstat))->code = (icalrequeststatus) (code);</custom>
</method>
<method name="i_cal_reqstat_get_desc" corresponds="CUSTOM" kind="get" since="1.0">
- <parameter type="const ICalReqstat *" name="reqstat" comment="The #ICalReqstat."/>
+ <parameter type="const ICalReqstat *" name="reqstat" comment="The #ICalReqstat"/>
<returns type="const gchar *" annotation="transfer none" comment="The desc of @reqstat."/>
- <comment>Get the desc of #ICalReqstat.</comment>
+ <comment>Gets the desc of #ICalReqstat.</comment>
<custom> g_return_val_if_fail (reqstat != NULL &amp;&amp; I_CAL_IS_REQSTAT (reqstat), NULL);
return ((struct icalreqstattype *)i_cal_object_get_native ((ICalObject *)reqstat))->desc;</custom>
</method>
<method name="i_cal_reqstat_get_debug" corresponds="CUSTOM" kind="get" since="1.0">
- <parameter type="const ICalReqstat *" name="reqstat" comment="The #ICalReqstat."/>
+ <parameter type="const ICalReqstat *" name="reqstat" comment="The #ICalReqstat"/>
<returns type="const gchar *" annotation="transfer none" comment="The debug of @reqstat."/>
- <comment>Get the debug of #ICalReqstat.</comment>
+ <comment>Gets the debug of #ICalReqstat.</comment>
<custom> g_return_val_if_fail (reqstat != NULL &amp;&amp; I_CAL_IS_REQSTAT (reqstat), NULL);
return ((struct icalreqstattype *)i_cal_object_get_native ((ICalObject *)reqstat))->debug;</custom>
</method>