aboutsummaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorvpodshiv <vladimir.podshivalov@outlook.com>2020-05-11 22:56:11 +0200
committerAleksander Morgado <aleksander@aleksander.es>2020-05-12 10:49:55 +0200
commit2aa0badc79595c92981793d18f05c99485156a6b (patch)
tree1297208ec401772e7d43554c05b02806c45b66ef /build-aux
parent088997b6e407f539f1e1ba6afb7ffa62f83c8958 (diff)
build,libqmi-glib: integrate gobject-introspection, update doc helpers to comply with it
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/qmi-codegen/VariableArray.py4
-rw-r--r--build-aux/qmi-codegen/VariableInteger.py2
-rw-r--r--build-aux/qmi-codegen/VariableString.py2
-rw-r--r--build-aux/qmi-codegen/VariableStruct.py2
4 files changed, 5 insertions, 5 deletions
diff --git a/build-aux/qmi-codegen/VariableArray.py b/build-aux/qmi-codegen/VariableArray.py
index 498947b..630270c 100644
--- a/build-aux/qmi-codegen/VariableArray.py
+++ b/build-aux/qmi-codegen/VariableArray.py
@@ -375,10 +375,10 @@ class VariableArray(Variable):
template = ''
if self.array_sequence_element != '':
template += (
- '${lp}@${name}_sequence: a placeholder for the output sequence number, or %NULL if not required.\n')
+ '${lp}@${name}_sequence: (out): a placeholder for the output sequence number, or %NULL if not required.\n')
template += (
- '${lp}@${name}: a placeholder for the output #GArray of #${public_array_element_format} elements, or %NULL if not required. Do not free it, it is owned by @self.\n')
+ '${lp}@${name}: (out): a placeholder for the output #GArray of #${public_array_element_format} elements, or %NULL if not required. Do not free it, it is owned by @self.\n')
return string.Template(template).substitute(translations)
diff --git a/build-aux/qmi-codegen/VariableInteger.py b/build-aux/qmi-codegen/VariableInteger.py
index 97eb396..79c6c18 100644
--- a/build-aux/qmi-codegen/VariableInteger.py
+++ b/build-aux/qmi-codegen/VariableInteger.py
@@ -296,7 +296,7 @@ class VariableInteger(Variable):
'name' : variable_name }
template = (
- '${lp}@${name}: a placeholder for the output #${public_format}, or %NULL if not required.\n')
+ '${lp}@${name}: (out): a placeholder for the output #${public_format}, or %NULL if not required.\n')
return string.Template(template).substitute(translations)
"""
diff --git a/build-aux/qmi-codegen/VariableString.py b/build-aux/qmi-codegen/VariableString.py
index 1f6b958..2dab702 100644
--- a/build-aux/qmi-codegen/VariableString.py
+++ b/build-aux/qmi-codegen/VariableString.py
@@ -213,7 +213,7 @@ class VariableString(Variable):
'name' : variable_name }
template = (
- '${lp}@${name}: a placeholder for the output constant string, or %NULL if not required.\n')
+ '${lp}@${name}: (out): a placeholder for the output constant string, or %NULL if not required.\n')
return string.Template(template).substitute(translations)
diff --git a/build-aux/qmi-codegen/VariableStruct.py b/build-aux/qmi-codegen/VariableStruct.py
index 42fd430..a125cff 100644
--- a/build-aux/qmi-codegen/VariableStruct.py
+++ b/build-aux/qmi-codegen/VariableStruct.py
@@ -189,7 +189,7 @@ class VariableStruct(Variable):
'name' : variable_name }
template = (
- '${lp}@${name}: a placeholder for the output constant #${format}, or %NULL if not required.\n')
+ '${lp}@${name}: (out): a placeholder for the output constant #${format}, or %NULL if not required.\n')
return string.Template(template).substitute(translations)