X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fiattribute.c;h=e39d7e08e7a9f64181a9ca44fa4a67ae3881f79d;hb=b445142a71748192520cfd645b4963e23070a486;hp=d9934f06e7898f59ce134990b485c33e4489eb34;hpb=b9f095dbe5986f50ca4665d976735bbb8c639c12;p=lttv.git diff --git a/ltt/branches/poly/lttv/iattribute.c b/ltt/branches/poly/lttv/iattribute.c index d9934f06..e39d7e08 100644 --- a/ltt/branches/poly/lttv/iattribute.c +++ b/ltt/branches/poly/lttv/iattribute.c @@ -80,10 +80,10 @@ void lttv_iattribute_remove_by_name(LttvIAttribute *self, return LTTV_IATTRIBUTE_GET_CLASS (self)->remove_by_name (self, name); } -LttvIAttribute* lttv_iattribute_create_subdir(LttvIAttribute *self, +LttvIAttribute* lttv_iattribute_find_subdir(LttvIAttribute *self, LttvAttributeName name) { - return LTTV_IATTRIBUTE_GET_CLASS (self)->create_subdir (self, name); + return LTTV_IATTRIBUTE_GET_CLASS (self)->find_subdir (self, name); } @@ -142,7 +142,7 @@ gboolean lttv_iattribute_find_by_path(LttvIAttribute *self, char *path, else { found_type = lttv_iattribute_get_by_name(node, name, v); if(found_type == LTTV_NONE) { - node = lttv_iattribute_create_subdir(node, name); + node = lttv_iattribute_find_subdir(node, name); } else if(found_type == LTTV_GOBJECT && LTTV_IS_IATTRIBUTE(*(v->v_gobject))) {