summaryrefslogtreecommitdiff
path: root/build-aux/qmi-codegen/VariableSequence.py
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/qmi-codegen/VariableSequence.py')
-rw-r--r--build-aux/qmi-codegen/VariableSequence.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/build-aux/qmi-codegen/VariableSequence.py b/build-aux/qmi-codegen/VariableSequence.py
index 46b72d85..704a8515 100644
--- a/build-aux/qmi-codegen/VariableSequence.py
+++ b/build-aux/qmi-codegen/VariableSequence.py
@@ -157,7 +157,7 @@ class VariableSequence(Variable):
"""
Builds the Struct getter implementation
"""
- def build_getter_implementation(self, line_prefix, variable_name_from, variable_name_to, to_is_reference):
+ def build_getter_implementation(self, line_prefix, variable_name_from, variable_name_to):
if not self.visible:
return ""
@@ -165,8 +165,7 @@ class VariableSequence(Variable):
for member in self.members:
built += member['object'].build_getter_implementation(line_prefix,
variable_name_from + '_' + member['name'],
- variable_name_to + '_' + member['name'],
- to_is_reference)
+ variable_name_to + '_' + member['name'])
return built