summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_popup.eo
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2016-04-20 14:55:26 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2016-04-26 11:36:23 +0900
commit902950018be3682c0549174fc0c6d1c04141cd39 (patch)
treee909eb2fdd7b12dfbba38d8a8c4f16d9340398e5 /src/lib/elementary/elm_popup.eo
parent8c02bf5be65f6d8fa6c4659eb54746531fead1a4 (diff)
downloadefl-902950018be3682c0549174fc0c6d1c04141cd39.tar.gz
Efl: Introduce Efl.Container and unify APIs
This removes Efl.Pack_Named which had a terrible name, removes Elm.Container which should have been renamed Efl.Ui.Container anyway, and introduces an interface Efl.Container instead. The hierarchy tree is now changed as objects don't inherit from Efl.Container (it's an interface, not a regular class) but only implement it. Obviously it is very easy to reintroduce an Efl.Ui.Container parent class if we need it, but I guess it should have some actual logic. It's basically part of what Elm.Widget already does. Some function names have been modified to look better in C with the efl_content prefix. @feature
Diffstat (limited to 'src/lib/elementary/elm_popup.eo')
-rw-r--r--src/lib/elementary/elm_popup.eo6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/elementary/elm_popup.eo b/src/lib/elementary/elm_popup.eo
index c302e9ea34..a36772cec8 100644
--- a/src/lib/elementary/elm_popup.eo
+++ b/src/lib/elementary/elm_popup.eo
@@ -177,9 +177,9 @@ class Elm.Popup (Elm.Layout, Elm.Interface_Atspi_Widget_Action)
Elm.Widget.translate;
Elm.Widget.sub_object_del;
Elm.Widget.event;
- Elm.Container.content.get;
- Elm.Container.content.set;
- Elm.Container.content_unset;
+ Efl.Container.content.get;
+ Efl.Container.content.set;
+ Efl.Container.content_unset;
Elm.Layout.text.set;
Elm.Layout.text.get;
Elm.Layout.sizing_eval;