efl_ui_grid/list: fix build
authorMarcel Hollerbach <mail@marcel-hollerbach.de>
Wed, 24 Jul 2019 20:06:07 +0000 (22:06 +0200)
committerWooHyun Jung <wh0705.jung@samsung.com>
Mon, 5 Aug 2019 01:47:22 +0000 (10:47 +0900)
wrong header file + wrong class define. That was forgotten to be pushed
with the commits before, sorry.

src/lib/elementary/efl_ui_grid.c
src/lib/elementary/efl_ui_list.c

index 7322e5f..331b435 100644 (file)
@@ -6,7 +6,7 @@
 #define EFL_UI_SCROLL_MANAGER_PROTECTED
 #define EFL_UI_SCROLLBAR_PROTECTED
 
-#include <Elementary.h>
+#include <Efl_Ui.h>
 #include "elm_priv.h"
 #include "efl_ui_item_private.h"
 #include "efl_ui_grid_item_private.h"
@@ -25,7 +25,7 @@ _efl_ui_grid_efl_object_constructor(Eo *obj, Efl_Ui_Grid_Data *pd EINA_UNUSED)
 {
    obj = efl_constructor(efl_super(obj, MY_CLASS));
 
-   efl_ui_item_container_position_manager_set(obj, efl_new(EFL_UI_GRID_POSITION_MANAGER_CLASS));
+   efl_ui_item_container_position_manager_set(obj, efl_new(EFL_UI_POSITION_MANAGER_GRID_CLASS));
 
    return obj;
 }
index 99dd959..8d8cbc2 100644 (file)
@@ -6,7 +6,7 @@
 #define EFL_UI_SCROLL_MANAGER_PROTECTED
 #define EFL_UI_SCROLLBAR_PROTECTED
 
-#include <Elementary.h>
+#include <Efl_Ui.h>
 #include "elm_priv.h"
 #include "efl_ui_list_item_private.h"
 #include "efl_ui_item_private.h"
@@ -25,7 +25,7 @@ _efl_ui_list_efl_object_constructor(Eo *obj, Efl_Ui_List_Data *pd EINA_UNUSED)
 {
    obj = efl_constructor(efl_super(obj, MY_CLASS));
 
-   efl_ui_item_container_position_manager_set(obj, efl_new(EFL_UI_LIST_POSITION_MANAGER_CLASS));
+   efl_ui_item_container_position_manager_set(obj, efl_new(EFL_UI_POSITION_MANAGER_LIST_CLASS));
 
    return obj;
 }