X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Ftrace_class.py;h=1d05dba9f67ccda08cc5963bfd59433374bbf79f;hp=615c410a89ba4ebc674615e9c6cd2a42c28fe42c;hb=8bc207afcf9695b096a0a8e8405f06b6328f069b;hpb=b8ddb4f036272e30030202637201d11baf5f20a5 diff --git a/src/bindings/python/bt2/bt2/trace_class.py b/src/bindings/python/bt2/bt2/trace_class.py index 615c410a..1d05dba9 100644 --- a/src/bindings/python/bt2/bt2/trace_class.py +++ b/src/bindings/python/bt2/bt2/trace_class.py @@ -452,7 +452,7 @@ class _TraceClass(_TraceClassConst): utils._check_type(content_fc, bt2_field_class._FieldClass) utils._check_bool(selector_is_reversed) utils._check_type(selector_fc, bt2_field_class._BoolFieldClass) - ptr = native_bt.field_class_option_with_selector_bool_create( + ptr = native_bt.field_class_option_with_selector_field_bool_create( self._ptr, content_fc._ptr, selector_fc._ptr ) self._check_field_class_create_status(ptr, 'option') @@ -472,12 +472,12 @@ class _TraceClass(_TraceClassConst): if isinstance(selector_fc, bt2_field_class._UnsignedIntegerFieldClass): utils._check_type(ranges, bt2_integer_range_set.UnsignedIntegerRangeSet) - ptr = native_bt.field_class_option_with_selector_integer_unsigned_create( + ptr = native_bt.field_class_option_with_selector_field_integer_unsigned_create( self._ptr, content_fc._ptr, selector_fc._ptr, ranges._ptr ) else: utils._check_type(ranges, bt2_integer_range_set.SignedIntegerRangeSet) - ptr = native_bt.field_class_option_with_selector_integer_signed_create( + ptr = native_bt.field_class_option_with_selector_field_integer_signed_create( self._ptr, content_fc._ptr, selector_fc._ptr, ranges._ptr )