X-Git-Url: https://git.efficios.com/?a=blobdiff_plain;f=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Fnative_bt_graph.i.h;h=0bd8a0b22ae82b40e6eec3a8aa8cc3e5d7e2e06f;hb=4175c1d52f91f7e5d66a12135ad8ec6ec736a539;hp=a7193497fa5cb5dff0da393805f40cf8d7accfdf;hpb=76276a81e72d967979674fdc0a646b42d8d6033e;p=babeltrace.git diff --git a/src/bindings/python/bt2/bt2/native_bt_graph.i.h b/src/bindings/python/bt2/bt2/native_bt_graph.i.h index a7193497..0bd8a0b2 100644 --- a/src/bindings/python/bt2/bt2/native_bt_graph.i.h +++ b/src/bindings/python/bt2/bt2/native_bt_graph.i.h @@ -523,7 +523,7 @@ bt_bt2_graph_add_source_component( PyObject *obj, bt_logging_level log_level, const bt_component_source **component) { - return bt_graph_add_source_component_with_init_method_data(graph, + return bt_graph_add_source_component_with_initialize_method_data(graph, component_class, name, params, obj == Py_None ? NULL : obj, log_level, component); } @@ -537,7 +537,7 @@ bt_bt2_graph_add_filter_component( PyObject *obj, bt_logging_level log_level, const bt_component_filter **component) { - return bt_graph_add_filter_component_with_init_method_data(graph, + return bt_graph_add_filter_component_with_initialize_method_data(graph, component_class, name, params, obj == Py_None ? NULL : obj, log_level, component); } @@ -551,7 +551,7 @@ bt_bt2_graph_add_sink_component( PyObject *obj, bt_logging_level log_level, const bt_component_sink **component) { - return bt_graph_add_sink_component_with_init_method_data(graph, + return bt_graph_add_sink_component_with_initialize_method_data(graph, component_class, name, params, obj == Py_None ? NULL : obj, log_level, component); }