efl_ui_collection: update theme name
authorMarcel Hollerbach <mail@marcel-hollerbach.de>
Thu, 5 Sep 2019 12:06:15 +0000 (14:06 +0200)
committerYeongjong Lee <yj34.lee@samsung.com>
Mon, 16 Sep 2019 01:23:00 +0000 (10:23 +0900)
item_container was the wrong name here. this fixes this to use the
correct name in the theme. Additionally the file name in the file is
adjusted.

Reviewed-by: SangHyeon Jade Lee <sh10233.lee@samsung.com>
Differential Revision: https://phab.enlightenment.org/D9849

data/elementary/themes/default.edc
data/elementary/themes/edc/efl/collection.edc [moved from data/elementary/themes/edc/efl/item_container.edc with 50% similarity]
src/lib/elementary/efl_ui_collection.c

index ae2dd99..cf1c76e 100644 (file)
@@ -206,6 +206,6 @@ collections {
 #include "edc/efl/tab_pager.edc"
 #include "edc/efl/tab_bar.edc"
 #include "edc/efl/tab_page.edc"
-#include "edc/efl/item_container.edc"
+#include "edc/efl/collection.edc"
 #include "edc/efl/group_item.edc"
 }
index 2922c4b..32811bc 100644 (file)
@@ -366,7 +366,7 @@ _efl_ui_collection_efl_object_constructor(Eo *obj, Efl_Ui_Collection_Data *pd EI
    _fast_accessor_init(&pd->size_accessor, &pd->items);
 
    if (!elm_widget_theme_klass_get(obj))
-     elm_widget_theme_klass_set(obj, "item_container");
+     elm_widget_theme_klass_set(obj, "collection");
 
    o = efl_constructor(efl_super(obj, MY_CLASS));