Rename `init` methods to `initialize`
[babeltrace.git] / src / plugins / text / pretty / pretty.c
index 2bf9f7b741390156d7476796935997bbe8e57ac5..973e45fe000b9a180203ae6b574735467423941c 100644 (file)
@@ -613,22 +613,24 @@ void set_use_colors(struct pretty_component *pretty)
 }
 
 BT_HIDDEN
-bt_component_class_init_method_status pretty_init(
-               bt_self_component_sink *comp, const bt_value *params,
+bt_component_class_initialize_method_status pretty_init(
+               bt_self_component_sink *comp,
+               bt_self_component_sink_configuration *config,
+               const bt_value *params,
                __attribute__((unused)) void *init_method_data)
 {
-       bt_component_class_init_method_status ret =
-               BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK;
+       bt_component_class_initialize_method_status ret =
+               BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
        struct pretty_component *pretty = create_pretty();
 
        if (!pretty) {
-               ret = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
+               ret = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
                goto end;
        }
 
        if (bt_self_component_sink_add_input_port(comp,
                        in_port_name, NULL, NULL) < 0) {
-               ret = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_MEMORY_ERROR;
+               ret = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
                goto error;
        }
 
@@ -642,7 +644,7 @@ bt_component_class_init_method_status pretty_init(
        pretty->last_real_timestamp = -1ULL;
 
        if (apply_params(pretty, params)) {
-               ret = BT_COMPONENT_CLASS_INIT_METHOD_STATUS_ERROR;
+               ret = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
                goto error;
        }
 
This page took 0.025504 seconds and 4 git commands to generate.