summaryrefslogtreecommitdiff
path: root/pango
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2019-04-04 08:50:25 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2019-04-04 08:55:15 +0200
commita31d18f60490a8b5b24c646789102595cecc72e7 (patch)
treeaff812e5ced7dd67e4c21912b585561e55e9688d /pango
parent783c04e84d02b5546fe44015c00f66b2edc1f4e1 (diff)
downloadpango-a31d18f60490a8b5b24c646789102595cecc72e7.tar.gz
docs: out parameters which are enums are not caller-allocatable
Diffstat (limited to 'pango')
-rw-r--r--pango/fonts.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pango/fonts.c b/pango/fonts.c
index 63e7c7b9..b46aef02 100644
--- a/pango/fonts.c
+++ b/pango/fonts.c
@@ -1527,7 +1527,7 @@ parse_field (const char *what,
/**
* pango_parse_style:
* @str: a string to parse.
- * @style: (out caller-allocates): a #PangoStyle to store the result
+ * @style: (out): a #PangoStyle to store the result
* in.
* @warn: if %TRUE, issue a g_warning() on bad input.
*
@@ -1548,7 +1548,7 @@ pango_parse_style (const char *str,
/**
* pango_parse_variant:
* @str: a string to parse.
- * @variant: (out caller-allocates): a #PangoVariant to store the
+ * @variant: (out): a #PangoVariant to store the
* result in.
* @warn: if %TRUE, issue a g_warning() on bad input.
*
@@ -1569,7 +1569,7 @@ pango_parse_variant (const char *str,
/**
* pango_parse_weight:
* @str: a string to parse.
- * @weight: (out caller-allocates): a #PangoWeight to store the result
+ * @weight: (out): a #PangoWeight to store the result
* in.
* @warn: if %TRUE, issue a g_warning() on bad input.
*
@@ -1590,7 +1590,7 @@ pango_parse_weight (const char *str,
/**
* pango_parse_stretch:
* @str: a string to parse.
- * @stretch: (out caller-allocates): a #PangoStretch to store the
+ * @stretch: (out): a #PangoStretch to store the
* result in.
* @warn: if %TRUE, issue a g_warning() on bad input.
*