summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2019-08-14 19:25:09 +0200
committerDaniel Kolesa <d.kolesa@samsung.com>2019-08-14 19:25:09 +0200
commit304f4ce9bb7a271440eec278ff40b2c547147a10 (patch)
treee9e5e00ca2ac487f7ae54314523bb15219a6eab9
parent0ca5cd82a95566a408a2221eb63f996c47aeb043 (diff)
downloadefl-304f4ce9bb7a271440eec278ff40b2c547147a10.tar.gz
efl: remove Efl.Ui.I18n from canvas object inheritance
Summary: canvas objects do not need localization because they are not directly user-facing this should only be inherited by objects which need to be localized Depends on D9559 Reviewers: q66 Reviewed By: q66 Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9560
-rw-r--r--src/lib/edje/efl_canvas_layout.eo2
-rw-r--r--src/lib/elementary/efl_ui_widget.eo2
-rw-r--r--src/lib/evas/canvas/efl_canvas_object.eo2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/edje/efl_canvas_layout.eo b/src/lib/edje/efl_canvas_layout.eo
index 0653bb41ac..d4ce1b3ca2 100644
--- a/src/lib/edje/efl_canvas_layout.eo
+++ b/src/lib/edje/efl_canvas_layout.eo
@@ -1,7 +1,7 @@
// FIXME: This EO doc needs a direct link to the "edcref" doc
class @beta Efl.Canvas.Layout extends Efl.Canvas.Group implements Efl.File, Efl.Container, Efl.Part,
- Efl.Observer, Efl.Layout.Calc,
+ Efl.Observer, Efl.Ui.I18n, Efl.Layout.Calc,
Efl.Layout.Signal, Efl.Layout.Group,
Efl.Player, Efl.Gfx.Color_Class, Efl.Gfx.Text_Class,
Efl.Gfx.Size_Class
diff --git a/src/lib/elementary/efl_ui_widget.eo b/src/lib/elementary/efl_ui_widget.eo
index ea5435848c..0517e3ae28 100644
--- a/src/lib/elementary/efl_ui_widget.eo
+++ b/src/lib/elementary/efl_ui_widget.eo
@@ -17,7 +17,7 @@ struct Efl.Ui.Widget_Focus_State {
abstract Efl.Ui.Widget extends Efl.Canvas.Group implements Efl.Access.Object,
Efl.Access.Component, Efl.Part, Efl.Ui.Focus.Object,
- Efl.Ui.L10n,
+ Efl.Ui.I18n, Efl.Ui.L10n,
Efl.Ui.Selection, Efl.Ui.Dnd,
Efl.Ui.Property_Bind, Efl.Ui.View
{
diff --git a/src/lib/evas/canvas/efl_canvas_object.eo b/src/lib/evas/canvas/efl_canvas_object.eo
index 60624588ce..ff4703e25a 100644
--- a/src/lib/evas/canvas/efl_canvas_object.eo
+++ b/src/lib/evas/canvas/efl_canvas_object.eo
@@ -8,7 +8,7 @@ struct Efl.Event_Animator_Tick {
abstract Efl.Canvas.Object extends Efl.Loop_Consumer implements Efl.Gfx.Entity, Efl.Gfx.Color, Efl.Gfx.Stack,
Efl.Input.Interface, Efl.Gfx.Hint,
- Efl.Gfx.Mapping, Efl.Ui.I18n, Efl.Canvas.Pointer, Efl.Gesture.Events
+ Efl.Gfx.Mapping, Efl.Canvas.Pointer, Efl.Gesture.Events
{
[[Efl canvas object abstract class