summaryrefslogtreecommitdiff
path: root/src/libical-glib/api/i-cal-recurrence.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/libical-glib/api/i-cal-recurrence.xml')
-rw-r--r--src/libical-glib/api/i-cal-recurrence.xml96
1 files changed, 48 insertions, 48 deletions
diff --git a/src/libical-glib/api/i-cal-recurrence.xml b/src/libical-glib/api/i-cal-recurrence.xml
index 1d5d71a6..205d6737 100644
--- a/src/libical-glib/api/i-cal-recurrence.xml
+++ b/src/libical-glib/api/i-cal-recurrence.xml
@@ -66,7 +66,7 @@
</method>
<method name="i_cal_recurrence_rscale_supported_calendars" corresponds="icalrecurrencetype_rscale_supported_calendars" kind="other" since="2.0">
<returns type="ICalArray *" annotation="transfer full" translator_argus="NULL, FALSE" comment="Array of calendars. Currently always NULL."/>
- <comment xml:space="preserve">Get an array of calendars supporting rscale (currently always return NULL).</comment>
+ <comment xml:space="preserve">Gets an array of calendars supporting rscale (currently always return NULL).</comment>
</method>
<method name="i_cal_recurrence_new_default" corresponds="CUSTOM" annotation="skip" kind="private" since="1.0">
<returns type="struct icalrecurrencetype" comment="The default value."/>
@@ -76,7 +76,7 @@
</method>
<method name="i_cal_recurrence_new" corresponds="CUSTOM" kind="constructor" since="1.0">
<returns type="ICalRecurrence *" annotation="transfer full" comment="The newly created #ICalRecurrence." />
- <comment xml:space="preserve">Create a new #ICalRecurrence.</comment>
+ <comment xml:space="preserve">Creates a new #ICalRecurrence.</comment>
<custom> return i_cal_recurrence_new_full(i_cal_recurrence_new_default());</custom>
</method>
<method name="i_cal_recurrence_clear" corresponds="icalrecurrencetype_clear" since="1.0">
@@ -115,14 +115,14 @@
<method name="i_cal_recurrence_get_until" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="ICalTime *" annotation="transfer full" comment="The until of #ICalRecurrence."/>
- <comment>Get the until from #ICalRecurrence.</comment>
+ <comment>Gets the until from #ICalRecurrence.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
return i_cal_time_new_full (((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->until);</custom>
</method>
<method name="i_cal_recurrence_set_until" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="ICalTime *" name="until" comment="The until of #ICalRecurrence."/>
- <comment>Set the until from #ICalRecurrence.</comment>
+ <comment>Sets the until from #ICalRecurrence.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (until != NULL &amp;&amp; I_CAL_IS_TIME(until));
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->until = *(icaltimetype *)i_cal_object_get_native ((ICalObject *)until);</custom>
@@ -130,63 +130,63 @@
<method name="i_cal_recurrence_get_freq" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="ICalRecurrenceFrequency" comment="The freq of #ICalRecurrence."/>
- <comment>Get the freq from #ICalRecurrence.</comment>
+ <comment>Gets the freq from #ICalRecurrence.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_NO_RECURRENCE);
return (ICalRecurrenceFrequency) (((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->freq);</custom>
</method>
<method name="i_cal_recurrence_set_freq" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="ICalRecurrenceFrequency" name="freq" comment="The freq of #ICalRecurrence."/>
- <comment>Set the freq from #ICalRecurrence.</comment>
+ <comment>Sets the freq from #ICalRecurrence.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
((struct icalrecurrencetype *) i_cal_object_get_native ((ICalObject *)recur))->freq = (icalrecurrencetype_frequency) freq;</custom>
</method>
<method name="i_cal_recurrence_get_count" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="gint" comment="The count of #ICalRecurrence."/>
- <comment>Get the count from #ICalRecurrence.</comment>
+ <comment>Gets the count from #ICalRecurrence.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), 0);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->count;</custom>
</method>
<method name="i_cal_recurrence_set_count" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="gint" name="count" comment="The count of #ICalRecurrence."/>
- <comment>Set the count from #ICalRecurrence.</comment>
+ <comment>Sets the count from #ICalRecurrence.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->count = count;</custom>
</method>
<method name="i_cal_recurrence_get_interval" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="gshort" comment="The interval of #ICalRecurrence."/>
- <comment>Get the interval from #ICalRecurrence.</comment>
+ <comment>Gets the interval from #ICalRecurrence.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), 0);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->interval;</custom>
</method>
<method name="i_cal_recurrence_set_interval" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="gshort" name="interval" comment="The interval of #ICalRecurrence."/>
- <comment>Set the interval from #ICalRecurrence.</comment>
+ <comment>Sets the interval from #ICalRecurrence.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->interval = interval;</custom>
</method>
<method name="i_cal_recurrence_get_week_start" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="ICalRecurrenceWeekday" comment="The week_start of #ICalRecurrence."/>
- <comment>Get the week_start from #ICalRecurrence.</comment>
+ <comment>Gets the week_start from #ICalRecurrence.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_NO_WEEKDAY);
return (ICalRecurrenceWeekday) (((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->week_start);</custom>
</method>
<method name="i_cal_recurrence_set_week_start" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="ICalRecurrenceWeekday" name="week_start" comment="The week_start of #ICalRecurrence."/>
- <comment>Set the week_start from #ICalRecurrence.</comment>
+ <comment>Sets the week_start from #ICalRecurrence.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->week_start = (icalrecurrencetype_weekday) week_start;</custom>
</method>
<method name="i_cal_recurrence_get_by_second_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_second of #ICalRecurrence."/>
- <comment>Get the by_second array from #ICalRecurrence. The array size if I_CAL_BY_SECOND_SIZE.</comment>
+ <comment>Gets the by_second array from #ICalRecurrence. The array size if I_CAL_BY_SECOND_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, TRUE, sizeof (gshort));
@@ -196,7 +196,7 @@
<method name="i_cal_recurrence_set_by_second_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_second array in @recur at once. The array size can be less than I_CAL_BY_SECOND_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_second array in @recur at once. The array size can be less than I_CAL_BY_SECOND_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -216,7 +216,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_second of #ICalRecurrence, less than %I_CAL_BY_SECOND_SIZE."/>
<returns type="gshort" comment="The by_second of #ICalRecurrence at index @index."/>
- <comment>Get the by_second value at index @index. The index should be less than %I_CAL_BY_SECOND_SIZE.</comment>
+ <comment>Gets the by_second value at index @index. The index should be less than %I_CAL_BY_SECOND_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_SECOND_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_second[index];</custom>
@@ -225,7 +225,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_second of #ICalRecurrence, less than I_CAL_BY_SECOND_SIZE."/>
<parameter type="gshort" name="value" comment="The value to be set into by_second of #ICalRecurrence."/>
- <comment>Set the by_second array from #ICalRecurrence at the given index. The array size is I_CAL_BY_SECOND_SIZE.</comment>
+ <comment>Sets the by_second array from #ICalRecurrence at the given index. The array size is I_CAL_BY_SECOND_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_SECOND_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_second[index] = value;</custom>
@@ -233,7 +233,7 @@
<method name="i_cal_recurrence_get_by_minute_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_minute of #ICalRecurrence."/>
- <comment>Get the by_minute array from #ICalRecurrence. The array size is I_CAL_BY_MINUTE_SIZE.</comment>
+ <comment>Gets the by_minute array from #ICalRecurrence. The array size is I_CAL_BY_MINUTE_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, FALSE, sizeof (gshort));
@@ -243,7 +243,7 @@
<method name="i_cal_recurrence_set_by_minute_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_minute array in @recur at once. The array size can be less than I_CAL_BY_MINUTE_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_minute array in @recur at once. The array size can be less than I_CAL_BY_MINUTE_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -263,7 +263,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_minute of #ICalRecurrence, less than %I_CAL_BY_MINUTE_SIZE."/>
<returns type="gshort" comment="The by_minute of #ICalRecurrence at index @index."/>
- <comment>Get the by_minute value at index @index. The index should be less than %I_CAL_BY_MINUTE_SIZE.</comment>
+ <comment>Gets the by_minute value at index @index. The index should be less than %I_CAL_BY_MINUTE_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_MINUTE_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_minute[index];</custom>
@@ -272,7 +272,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_minute of #ICalRecurrence."/>
<parameter type="gshort" name="value" comment="The value to be set into by_minute of #ICalRecurrence."/>
- <comment>Set the by_minute array from #ICalRecurrence at the given index. The array size is I_CAL_BY_MINUTE_SIZE.</comment>
+ <comment>Sets the by_minute array from #ICalRecurrence at the given index. The array size is I_CAL_BY_MINUTE_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_MINUTE_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_minute[index] = value;</custom>
@@ -280,7 +280,7 @@
<method name="i_cal_recurrence_get_by_hour_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_hour of #ICalRecurrence."/>
- <comment>Get the by_hour array from #ICalRecurrence. The array size is I_CAL_BY_HOUR_SIZE.</comment>
+ <comment>Gets the by_hour array from #ICalRecurrence. The array size is I_CAL_BY_HOUR_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, FALSE, sizeof (gshort));
@@ -290,7 +290,7 @@
<method name="i_cal_recurrence_set_by_hour_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_hour array in @recur at once. The array size can be less than I_CAL_BY_HOUR_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_hour array in @recur at once. The array size can be less than I_CAL_BY_HOUR_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -310,7 +310,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_hour of #ICalRecurrence, less than %I_CAL_BY_HOUR_SIZE."/>
<returns type="gshort" comment="The by_hour of #ICalRecurrence at index @index."/>
- <comment>Get the by_hour value at index @index. The index should be less than %I_CAL_BY_HOUR_SIZE.</comment>
+ <comment>Gets the by_hour value at index @index. The index should be less than %I_CAL_BY_HOUR_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_HOUR_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_hour[index];</custom>
@@ -319,7 +319,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_hour of #ICalRecurrence."/>
<parameter type="gshort" name="value" comment="The value to be set into by_hour of #ICalRecurrence."/>
- <comment>Set the by_hour array from #ICalRecurrence at the given index. The array size is I_CAL_BY_HOUR_SIZE.</comment>
+ <comment>Sets the by_hour array from #ICalRecurrence at the given index. The array size is I_CAL_BY_HOUR_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_HOUR_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_hour[index] = value;</custom>
@@ -327,7 +327,7 @@
<method name="i_cal_recurrence_get_by_day_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_day of #ICalRecurrence."/>
- <comment>Get the by_day array from #ICalRecurrence. The array size is I_CAL_BY_DAY_SIZE.</comment>
+ <comment>Gets the by_day array from #ICalRecurrence. The array size is I_CAL_BY_DAY_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, FALSE, sizeof (gshort));
@@ -337,7 +337,7 @@
<method name="i_cal_recurrence_set_by_day_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_day array in @recur at once. The array size can be less than I_CAL_BY_DAY_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_day array in @recur at once. The array size can be less than I_CAL_BY_DAY_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -357,7 +357,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_day of #ICalRecurrence, less than %I_CAL_BY_DAY_SIZE."/>
<returns type="gshort" comment="The by_day of #ICalRecurrence at index @index."/>
- <comment>Get the by_day value at index @index. The index should be less than %I_CAL_BY_DAY_SIZE.</comment>
+ <comment>Gets the by_day value at index @index. The index should be less than %I_CAL_BY_DAY_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_DAY_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_day[index];</custom>
@@ -366,7 +366,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_day of #ICalRecurrence."/>
<parameter type="gshort" name="value" comment="The value to be set into by_day of #ICalRecurrence."/>
- <comment>Set the by_day array from #ICalRecurrence at the given index. The array size if I_CAL_BY_DAY_SIZE.</comment>
+ <comment>Sets the by_day array from #ICalRecurrence at the given index. The array size if I_CAL_BY_DAY_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_DAY_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_day[index] = value;</custom>
@@ -374,7 +374,7 @@
<method name="i_cal_recurrence_get_by_month_day_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_month_day of #ICalRecurrence."/>
- <comment>Get the by_month_day array from #ICalRecurrence. The array size is I_CAL_BY_MONTHDAY_SIZE.</comment>
+ <comment>Gets the by_month_day array from #ICalRecurrence. The array size is I_CAL_BY_MONTHDAY_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, FALSE, sizeof (gshort));
@@ -384,7 +384,7 @@
<method name="i_cal_recurrence_set_by_month_day_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_month_day array in @recur at once. The array size can be less than I_CAL_BY_MONTHDAY_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_month_day array in @recur at once. The array size can be less than I_CAL_BY_MONTHDAY_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -404,7 +404,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_month_day of #ICalRecurrence, less than %I_CAL_BY_MONTHDAY_SIZE."/>
<returns type="gshort" comment="The by_month_day of #ICalRecurrence at index @index."/>
- <comment>Get the by_month_day value at index @index. The index should be less than %I_CAL_BY_MONTHDAY_SIZE.</comment>
+ <comment>Gets the by_month_day value at index @index. The index should be less than %I_CAL_BY_MONTHDAY_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_MONTHDAY_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_month_day[index];</custom>
@@ -413,7 +413,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_month_day of #ICalRecurrence."/>
<parameter type="gshort" name="value" comment="The value to be set into by_month_day of #ICalRecurrence."/>
- <comment>Set the by_month_day array from #ICalRecurrence at the given index. The array size if I_CAL_BY_MONTHDAY_SIZE.</comment>
+ <comment>Sets the by_month_day array from #ICalRecurrence at the given index. The array size if I_CAL_BY_MONTHDAY_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_MONTHDAY_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_month_day[index] = value;</custom>
@@ -421,7 +421,7 @@
<method name="i_cal_recurrence_get_by_year_day_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_year_day of #ICalRecurrence."/>
- <comment>Get the by_year_day array from #ICalRecurrence. The array size is I_CAL_BY_YEARDAY_SIZE.</comment>
+ <comment>Gets the by_year_day array from #ICalRecurrence. The array size is I_CAL_BY_YEARDAY_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, FALSE, sizeof (gshort));
@@ -431,7 +431,7 @@
<method name="i_cal_recurrence_set_by_year_day_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_year_day array in @recur at once. The array size can be less than I_CAL_BY_YEARDAY_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_year_day array in @recur at once. The array size can be less than I_CAL_BY_YEARDAY_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -451,7 +451,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_year_day of #ICalRecurrence, less than %I_CAL_BY_YEARDAY_SIZE."/>
<returns type="gshort" comment="The by_year_day of #ICalRecurrence at index @index."/>
- <comment>Get the by_year_day value at index @index. The index should be less than %I_CAL_BY_YEARDAY_SIZE.</comment>
+ <comment>Gets the by_year_day value at index @index. The index should be less than %I_CAL_BY_YEARDAY_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_YEARDAY_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_year_day[index];</custom>
@@ -460,7 +460,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_year_day of #ICalRecurrence."/>
<parameter type="gshort" name="value" comment="The value to be set into by_year_day of #ICalRecurrence."/>
- <comment>Set the by_year_day array from #ICalRecurrence at the given index. The array size if I_CAL_BY_YEARDAY_SIZE.</comment>
+ <comment>Sets the by_year_day array from #ICalRecurrence at the given index. The array size if I_CAL_BY_YEARDAY_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_YEARDAY_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_year_day[index] = value;</custom>
@@ -468,7 +468,7 @@
<method name="i_cal_recurrence_get_by_week_no_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_week_no of #ICalRecurrence."/>
- <comment>Get the by_week_no array from #ICalRecurrence. The array size is I_CAL_BY_WEEKNO_SIZE.</comment>
+ <comment>Gets the by_week_no array from #ICalRecurrence. The array size is I_CAL_BY_WEEKNO_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, FALSE, sizeof (gshort));
@@ -478,7 +478,7 @@
<method name="i_cal_recurrence_set_by_week_no_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_week_no array in @recur at once. The array size can be less than I_CAL_BY_WEEKNO_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_week_no array in @recur at once. The array size can be less than I_CAL_BY_WEEKNO_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -498,7 +498,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_week_no of #ICalRecurrence, less than %I_CAL_BY_WEEKNO_SIZE."/>
<returns type="gshort" comment="The by_week_no of #ICalRecurrence at index @index."/>
- <comment>Get the by_week_no value at index @index. The index should be less than %I_CAL_BY_WEEKNO_SIZE.</comment>
+ <comment>Gets the by_week_no value at index @index. The index should be less than %I_CAL_BY_WEEKNO_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_WEEKNO_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_week_no[index];</custom>
@@ -507,7 +507,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_week_no of #ICalRecurrence."/>
<parameter type="gshort" name="value" comment="The value to be set into by_week_no of #ICalRecurrence."/>
- <comment>Set the by_week_no array from #ICalRecurrence at the given index. The array size is I_CAL_BY_WEEKNO_SIZE.</comment>
+ <comment>Sets the by_week_no array from #ICalRecurrence at the given index. The array size is I_CAL_BY_WEEKNO_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_WEEKNO_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_week_no[index] = value;</custom>
@@ -515,7 +515,7 @@
<method name="i_cal_recurrence_get_by_month_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_month of #ICalRecurrence."/>
- <comment>Get the by_month array from #ICalRecurrence. The array size is I_CAL_BY_MONTH_SIZE.</comment>
+ <comment>Gets the by_month array from #ICalRecurrence. The array size is I_CAL_BY_MONTH_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, FALSE, sizeof (gshort));
@@ -525,7 +525,7 @@
<method name="i_cal_recurrence_set_by_month_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_month array in @recur at once. The array size can be less than I_CAL_BY_MONTH_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_month array in @recur at once. The array size can be less than I_CAL_BY_MONTH_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -545,7 +545,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_month of #ICalRecurrence, less than %I_CAL_BY_MONTH_SIZE."/>
<returns type="gshort" comment="The by_month of #ICalRecurrence at index @index."/>
- <comment>Get the by_month value at index @index. The index should be less than %I_CAL_BY_MONTH_SIZE.</comment>
+ <comment>Gets the by_month value at index @index. The index should be less than %I_CAL_BY_MONTH_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_MONTH_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_month[index];</custom>
@@ -554,7 +554,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_month of #ICalRecurrence."/>
<parameter type="gshort" name="value" comment="The value to be set into by_month of #ICalRecurrence."/>
- <comment>Set the by_month array from #ICalRecurrence at the given index. The array size is I_CAL_BY_MONTH_SIZE.</comment>
+ <comment>Sets the by_month array from #ICalRecurrence at the given index. The array size is I_CAL_BY_MONTH_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_MONTH_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_month[index] = value;</custom>
@@ -562,7 +562,7 @@
<method name="i_cal_recurrence_get_by_set_pos_array" corresponds="CUSTOM" kind="get" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<returns type="GArray *" annotation="transfer full, element-type gshort" comment="The by_set_pos of #ICalRecurrence."/>
- <comment>Get the by_set_pos array from #ICalRecurrence. The array size is I_CAL_BY_SETPOS_SIZE.</comment>
+ <comment>Gets the by_set_pos array from #ICalRecurrence. The array size is I_CAL_BY_SETPOS_SIZE.</comment>
<custom> GArray *array;
g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), NULL);
array = g_array_new (FALSE, FALSE, sizeof (gshort));
@@ -572,7 +572,7 @@
<method name="i_cal_recurrence_set_by_set_pos_array" corresponds="CUSTOM" kind="set" since="1.0">
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="GArray *" name="values" annotation="element-type gshort" comment="The array of values."/>
- <comment>Set the by_set_pos array in @recur at once. The array size can be less than I_CAL_BY_SETPOS_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
+ <comment>Sets the by_set_pos array in @recur at once. The array size can be less than I_CAL_BY_SETPOS_SIZE. Shorter arrays are terminated with I_CAL_RECURRENCE_ARRAY_MAX value, longer arrays are truncated.</comment>
<custom> struct icalrecurrencetype *rt;
guint ii;
@@ -592,7 +592,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_set_pos of #ICalRecurrence, less than %I_CAL_BY_SETPOS_SIZE."/>
<returns type="gshort" comment="The by_week_no of #ICalRecurrence at index @index."/>
- <comment>Get the by_set_pos value at index @index. The index should be less than %I_CAL_BY_SETPOS_SIZE.</comment>
+ <comment>Gets the by_set_pos value at index @index. The index should be less than %I_CAL_BY_SETPOS_SIZE.</comment>
<custom> g_return_val_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur), I_CAL_RECURRENCE_ARRAY_MAX);
g_return_val_if_fail (index &lt; I_CAL_BY_SETPOS_SIZE, I_CAL_RECURRENCE_ARRAY_MAX);
return ((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_set_pos[index];</custom>
@@ -601,7 +601,7 @@
<parameter type="ICalRecurrence *" name="recur" comment="The #ICalRecurrence."/>
<parameter type="guint" name="index" comment="The index in by_set_pos of #ICalRecurrence."/>
<parameter type="gshort" name="value" comment="The value to be set into by_set_pos of #ICalRecurrence."/>
- <comment>Set the by_set_pos array from #ICalRecurrence at the given index. The array size is I_CAL_BY_SETPOS_SIZE.</comment>
+ <comment>Sets the by_set_pos array from #ICalRecurrence at the given index. The array size is I_CAL_BY_SETPOS_SIZE.</comment>
<custom> g_return_if_fail (recur != NULL &amp;&amp; I_CAL_IS_RECURRENCE (recur));
g_return_if_fail (index &lt; I_CAL_BY_SETPOS_SIZE);
((struct icalrecurrencetype *)i_cal_object_get_native ((ICalObject *)recur))->by_set_pos[index] = value;</custom>