elementary: remove Efl.Ui.Layout namespace 37/193437/1
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Tue, 20 Nov 2018 11:26:38 +0000 (20:26 +0900)
committerJaehyun Cho <jae_hyun.cho@samsung.com>
Tue, 20 Nov 2018 11:28:08 +0000 (20:28 +0900)
Efl.Ui.Layout namespace is removed to keep consistency with other
widgets.
Consequently, "Efl.Ui.Layout.Object" is renamed to "Efl.Ui.Layout" and
"Efl.Ui.Layout." is renamed to "Efl.Ui.Layout_".

Change-Id: Ie2b9e1d7e2aae5137fb5151a1c808a14dd373a89

src/mobile/eext_floatingbutton.eo
src/mobile/eext_floatingbutton_part_content.eo
src/wearable/efl_extension_more_option.c
src/wearable/efl_extension_rotary_selector.c

index ae5c717e4ed34bd8897bb632fc1ac8dad1704a15..8e9bacb6dfdf5e84abf852dfad3bd680f16d85f1 100644 (file)
@@ -17,7 +17,7 @@ enum Eext.Floatingbutton.Mode {
    last          [[ indicates the last, do not use this ]]
 }
 
-class Eext.Floatingbutton (Efl.Ui.Layout.Object, Efl.Access.Component) {
+class Eext.Floatingbutton (Efl.Ui.Layout, Efl.Access.Component) {
    eo_prefix: eext_ui_floatingbutton;
    methods {
       @property floatingbutton_pos {
index ac7181748929ea86c32a99f148fadd38af60eef8..d32ceb1d0fbee9a4017da2e6a4d6e8481b95d858 100644 (file)
@@ -1,4 +1,4 @@
-class Eext.Floatingbutton.Part_Content (Efl.Ui.Layout.Part, Efl.Content)
+class Eext.Floatingbutton.Part_Content (Efl.Ui.Layout_Part, Efl.Content)
 {
    [[Eext Floatingbutton internal part class]]
    data: null;
index 9b435486ea2275c2dfbf3a437c3d4615d907174e..f375e0adb7b0a3d65a17ad612189a0a8156b88b4 100644 (file)
@@ -869,12 +869,12 @@ _eext_more_option_color_class_parent_set(Evas_Object *obj, Evas_Object *parent)
 
    if (!obj || !parent) return;
 
-   if (efl_isa(obj, EFL_UI_LAYOUT_OBJECT_CLASS))
+   if (efl_isa(obj, EFL_UI_LAYOUT_CLASS))
      edje =  elm_layout_edje_get(obj);
    else if (efl_isa(obj, EFL_CANVAS_LAYOUT_CLASS))
      edje = obj;
 
-   if (efl_isa(parent, EFL_UI_LAYOUT_OBJECT_CLASS))
+   if (efl_isa(parent, EFL_UI_LAYOUT_CLASS))
      parent_edje =  elm_layout_edje_get(parent);
    else if (efl_isa(parent, EFL_CANVAS_LAYOUT_CLASS))
      parent_edje = parent;
index 00b1f3831c842fde61c89f0d0d3a348a8bef3f4f..054883a0bcae3e7ed784f7520ea70cd8b0ffaaee 100644 (file)
@@ -1933,12 +1933,12 @@ _eext_rotary_selector_color_class_parent_set(Evas_Object *obj, Evas_Object *pare
 
    if (!obj || !parent) return;
 
-   if (efl_isa(obj, EFL_UI_LAYOUT_OBJECT_CLASS))
+   if (efl_isa(obj, EFL_UI_LAYOUT_CLASS))
      edje =  elm_layout_edje_get(obj);
    else if (efl_isa(obj, EFL_CANVAS_LAYOUT_CLASS))
      edje = obj;
 
-   if (efl_isa(parent, EFL_UI_LAYOUT_OBJECT_CLASS))
+   if (efl_isa(parent, EFL_UI_LAYOUT_CLASS))
      parent_edje =  elm_layout_edje_get(parent);
    else if (efl_isa(parent, EFL_CANVAS_LAYOUT_CLASS))
      parent_edje = parent;