q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=a7d29f71859b43d7bcc9b3116254d1cc7065a454

commit a7d29f71859b43d7bcc9b3116254d1cc7065a454
Author: Xavi Artigas <xavierarti...@yahoo.es>
Date:   Wed May 23 12:30:26 2018 +0200

    efl: rename Efl.Ui.Stack.Event_* -> Efl.Ui.Stack_Event_*
---
 src/lib/elementary/efl_ui_stack.eo | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/lib/elementary/efl_ui_stack.eo 
b/src/lib/elementary/efl_ui_stack.eo
index 33772123db..65f8156789 100644
--- a/src/lib/elementary/efl_ui_stack.eo
+++ b/src/lib/elementary/efl_ui_stack.eo
@@ -1,19 +1,19 @@
-struct Efl.Ui.Stack.Event_Loaded {
+struct Efl.Ui.Stack_Event_Loaded {
    [[Information of loaded event.]]
    content: Efl.Canvas.Object; [[Loaded content.]]
 }
 
-struct Efl.Ui.Stack.Event_Unloaded {
+struct Efl.Ui.Stack_Event_Unloaded {
    [[Information of unloaded event.]]
    content: Efl.Canvas.Object; [[Unloaded content.]]
 }
 
-struct Efl.Ui.Stack.Event_Activated {
+struct Efl.Ui.Stack_Event_Activated {
    [[Information of activated event.]]
    content: Efl.Canvas.Object; [[Activated content.]]
 }
 
-struct Efl.Ui.Stack.Event_Deactivated {
+struct Efl.Ui.Stack_Event_Deactivated {
    [[Information of deactivated event.]]
    content: Efl.Canvas.Object; [[Deactivated content.]]
 }
@@ -123,9 +123,9 @@ class Efl.Ui.Stack (Efl.Ui.Layout.Object)
       Efl.Object.constructor;
    }
    events {
-      loaded: Efl.Ui.Stack.Event_Loaded;      [[Called when content is loaded 
right before transition.]]
-      unloaded: Efl.Ui.Stack.Event_Unloaded;    [[Called when content is 
unloaded right after being deactivated.]]
-      activated: Efl.Ui.Stack.Event_Activated;   [[Called when content is 
activated right after transition.]]
-      deactivated: Efl.Ui.Stack.Event_Deactivated; [[Called when content is 
deactivated right after transition.]]
+      loaded: Efl.Ui.Stack_Event_Loaded;      [[Called when content is loaded 
right before transition.]]
+      unloaded: Efl.Ui.Stack_Event_Unloaded;    [[Called when content is 
unloaded right after being deactivated.]]
+      activated: Efl.Ui.Stack_Event_Activated;   [[Called when content is 
activated right after transition.]]
+      deactivated: Efl.Ui.Stack_Event_Deactivated; [[Called when content is 
deactivated right after transition.]]
    }
 }

-- 


Reply via email to