jaehyun pushed a commit to branch feature/eo_theme.

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

commit a1d9d20a5521eb627fe1b88ec0c421b2744da080
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Tue Dec 5 11:19:34 2017 +0900

    efl_ui_popup: Fix class names
---
 src/lib/elementary/efl_ui_popup_alert.c              |  2 +-
 src/lib/elementary/efl_ui_popup_alert.eo             | 12 ++++++------
 src/lib/elementary/efl_ui_popup_alert_part.eo        |  2 +-
 src/lib/elementary/efl_ui_popup_alert_scroll.c       |  2 +-
 src/lib/elementary/efl_ui_popup_alert_scroll.eo      |  2 +-
 src/lib/elementary/efl_ui_popup_alert_scroll_part.eo |  2 +-
 src/lib/elementary/efl_ui_popup_alert_text.c         |  2 +-
 src/lib/elementary/efl_ui_popup_alert_text.eo        |  2 +-
 src/lib/elementary/efl_ui_popup_alert_text_part.eo   |  2 +-
 src/lib/elementary/efl_ui_popup_anchor.c             |  2 +-
 src/lib/elementary/efl_ui_popup_anchor.eo            |  2 +-
 11 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/lib/elementary/efl_ui_popup_alert.c 
b/src/lib/elementary/efl_ui_popup_alert.c
index e242a312e3..58922b12d8 100644
--- a/src/lib/elementary/efl_ui_popup_alert.c
+++ b/src/lib/elementary/efl_ui_popup_alert.c
@@ -10,7 +10,7 @@
 #include "elm_part_helper.h"
 
 #define MY_CLASS EFL_UI_POPUP_ALERT_CLASS
-#define MY_CLASS_NAME "Efl.Ui.Popup.Alert"
+#define MY_CLASS_NAME "Efl.Ui.Popup_Alert"
 
 static const char PART_NAME_BUTTON[] = "button";
 static const char PART_NAME_BUTTON_LAYOUT[EFL_UI_POPUP_ALERT_BUTTON_COUNT][15] 
=
diff --git a/src/lib/elementary/efl_ui_popup_alert.eo 
b/src/lib/elementary/efl_ui_popup_alert.eo
index 7d9fb1fbc1..ed27a1198e 100644
--- a/src/lib/elementary/efl_ui_popup_alert.eo
+++ b/src/lib/elementary/efl_ui_popup_alert.eo
@@ -1,16 +1,16 @@
-enum Efl.Ui.Popup.Alert.Button {
+enum Efl.Ui.Popup_Alert.Button {
    [[Defines the type of the alert button.]]
    positive = 0, [[Button having positive meaning. e.g. "Yes"]]
    negative, [[Button having negative meaning. e.g. "No"]]
    user [[Button having user-defined meaning. e.g. "Cancel"]]
 }
 
-struct Efl.Ui.Popup.Alert.Clicked_Event {
+struct Efl.Ui.Popup_Alert.Clicked_Event {
    [[Information of clicked event]]
-   button_type: Efl.Ui.Popup.Alert.Button; [[Clicked button type]]
+   button_type: Efl.Ui.Popup_Alert.Button; [[Clicked button type]]
 }
 
-class Efl.Ui.Popup.Alert(Efl.Ui.Popup)
+class Efl.Ui.Popup_Alert(Efl.Ui.Popup)
 {
    methods {
       @property button {
@@ -18,7 +18,7 @@ class Efl.Ui.Popup.Alert(Efl.Ui.Popup)
             [[Set popup buttons.]]
          }
          keys {
-            type: Efl.Ui.Popup.Alert.Button;
+            type: Efl.Ui.Popup_Alert.Button;
          }
          values {
             text: string;
@@ -31,6 +31,6 @@ class Efl.Ui.Popup.Alert(Efl.Ui.Popup)
       Efl.Part.part;
    }
    events {
-      clicked: Efl.Ui.Popup.Alert.Clicked_Event;
+      clicked: Efl.Ui.Popup_Alert.Clicked_Event;
    }
 }
diff --git a/src/lib/elementary/efl_ui_popup_alert_part.eo 
b/src/lib/elementary/efl_ui_popup_alert_part.eo
index 31e607023c..31198e1ce0 100644
--- a/src/lib/elementary/efl_ui_popup_alert_part.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_part.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup.Alert.Part (Efl.Ui.Layout.Part_Text)
+class Efl.Ui.Popup_Alert.Part (Efl.Ui.Layout.Part_Text)
 {
    [[Efl UI Popup Alert internal part class]]
    data: null;
diff --git a/src/lib/elementary/efl_ui_popup_alert_scroll.c 
b/src/lib/elementary/efl_ui_popup_alert_scroll.c
index 93b703a51a..7a5dd0b61c 100644
--- a/src/lib/elementary/efl_ui_popup_alert_scroll.c
+++ b/src/lib/elementary/efl_ui_popup_alert_scroll.c
@@ -10,7 +10,7 @@
 #include "elm_part_helper.h"
 
 #define MY_CLASS EFL_UI_POPUP_ALERT_SCROLL_CLASS
-#define MY_CLASS_NAME "Efl.Ui.Popup.Alert.Scroll"
+#define MY_CLASS_NAME "Efl.Ui.Popup_Alert_Scroll"
 
 static const char PART_NAME_SCROLLER[] = "scroller";
 
diff --git a/src/lib/elementary/efl_ui_popup_alert_scroll.eo 
b/src/lib/elementary/efl_ui_popup_alert_scroll.eo
index 641a5d6899..af13c9b395 100644
--- a/src/lib/elementary/efl_ui_popup_alert_scroll.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_scroll.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup.Alert.Scroll(Efl.Ui.Popup.Alert)
+class Efl.Ui.Popup_Alert_Scroll(Efl.Ui.Popup_Alert)
 {
    implements {
       Efl.Object.constructor;
diff --git a/src/lib/elementary/efl_ui_popup_alert_scroll_part.eo 
b/src/lib/elementary/efl_ui_popup_alert_scroll_part.eo
index 984f91161a..1514b514df 100644
--- a/src/lib/elementary/efl_ui_popup_alert_scroll_part.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_scroll_part.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup.Alert.Scroll.Part (Efl.Ui.Layout.Part_Content, 
Efl.Ui.Layout.Part_Text)
+class Efl.Ui.Popup_Alert_Scroll.Part (Efl.Ui.Layout.Part_Content, 
Efl.Ui.Layout.Part_Text)
 {
    [[Efl UI Popup Alert Scroll internal part class]]
    data: null;
diff --git a/src/lib/elementary/efl_ui_popup_alert_text.c 
b/src/lib/elementary/efl_ui_popup_alert_text.c
index 0b10350802..b8d50a3282 100644
--- a/src/lib/elementary/efl_ui_popup_alert_text.c
+++ b/src/lib/elementary/efl_ui_popup_alert_text.c
@@ -10,7 +10,7 @@
 #include "elm_part_helper.h"
 
 #define MY_CLASS EFL_UI_POPUP_ALERT_TEXT_CLASS
-#define MY_CLASS_NAME "Efl.Ui.Popup.Alert.Text"
+#define MY_CLASS_NAME "Efl.Ui.Popup_Alert_Text"
 
 static const char PART_NAME_SCROLLER[] = "scroller";
 static const char PART_NAME_TEXT[] = "text";
diff --git a/src/lib/elementary/efl_ui_popup_alert_text.eo 
b/src/lib/elementary/efl_ui_popup_alert_text.eo
index b00f084696..bca77299f5 100644
--- a/src/lib/elementary/efl_ui_popup_alert_text.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_text.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup.Alert.Text(Efl.Ui.Popup.Alert, Efl.Text)
+class Efl.Ui.Popup_Alert_Text(Efl.Ui.Popup_Alert, Efl.Text)
 {
    implements {
       Efl.Object.constructor;
diff --git a/src/lib/elementary/efl_ui_popup_alert_text_part.eo 
b/src/lib/elementary/efl_ui_popup_alert_text_part.eo
index e915644219..6c2231aaca 100644
--- a/src/lib/elementary/efl_ui_popup_alert_text_part.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_text_part.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup.Alert.Text.Part (Efl.Ui.Layout.Part_Content, 
Efl.Ui.Layout.Part_Text)
+class Efl.Ui.Popup_Alert_Text.Part (Efl.Ui.Layout.Part_Content, 
Efl.Ui.Layout.Part_Text)
 {
    [[Efl UI Popup Alert Text internal part class]]
    data: null;
diff --git a/src/lib/elementary/efl_ui_popup_anchor.c 
b/src/lib/elementary/efl_ui_popup_anchor.c
index b1f278f6b2..b94bf7edd3 100644
--- a/src/lib/elementary/efl_ui_popup_anchor.c
+++ b/src/lib/elementary/efl_ui_popup_anchor.c
@@ -11,7 +11,7 @@
 #include "efl_ui_popup_anchor_private.h"
 
 #define MY_CLASS EFL_UI_POPUP_ANCHOR_CLASS
-#define MY_CLASS_NAME "Efl.Ui.Popup.Anchor"
+#define MY_CLASS_NAME "Efl.Ui.Popup_Anchor"
 
 static void
 _anchor_calc(Eo *obj)
diff --git a/src/lib/elementary/efl_ui_popup_anchor.eo 
b/src/lib/elementary/efl_ui_popup_anchor.eo
index 656f48c45b..8749a4ad3d 100644
--- a/src/lib/elementary/efl_ui_popup_anchor.eo
+++ b/src/lib/elementary/efl_ui_popup_anchor.eo
@@ -1,4 +1,4 @@
-class Efl.Ui.Popup.Anchor(Efl.Ui.Popup)
+class Efl.Ui.Popup_Anchor(Efl.Ui.Popup)
 {
    methods {
       @property anchor {

-- 


Reply via email to