xartigas pushed a commit to branch master.

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

commit dcc7813caf4a8e686b2f25064c312366d94c8bbb
Author: Ali Alzyod <ali198...@gmail.com>
Date:   Thu Jan 9 10:59:12 2020 +0100

    TEXT_FORMAT_HORIZONTAL_ALIGNMENT_AUTO_TYPE: rename end enum into opposite
    
    Summary: TEXT_FORMAT_HORIZONTAL_ALIGNMENT_AUTO_TYPE: rename end enum into 
opposite
    
    Reviewers: segfaultxavi, woohyun
    
    Reviewed By: segfaultxavi, woohyun
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Maniphest Tasks: T7939
    
    Differential Revision: https://phab.enlightenment.org/D11058
---
 src/lib/efl/interfaces/efl_text_format.eo   | 2 +-
 src/lib/evas/canvas/evas_object_textblock.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/efl/interfaces/efl_text_format.eo 
b/src/lib/efl/interfaces/efl_text_format.eo
index 03a44295a5..96b724c84b 100644
--- a/src/lib/efl/interfaces/efl_text_format.eo
+++ b/src/lib/efl/interfaces/efl_text_format.eo
@@ -13,7 +13,7 @@ enum @beta Efl.Text_Format_Horizontal_Alignment_Auto_Type {
    none,   [[No auto-alignment rule: Horizontal Alignment is decided by 
@Efl.Text_Format.text_horizontal_align]]
    auto,   [[Respects LTR/RTL (bidirectional) characters found inside the text 
content.]]
    locale, [[Respects the system's language settings.]]
-   end     [[Text is placed at opposite side of LTR/RTL (bidirectional) 
settings.]]
+   opposite  [[Text is placed at opposite side of LTR/RTL (bidirectional) 
settings.]]
 }
 
 interface @beta Efl.Text_Format {
diff --git a/src/lib/evas/canvas/evas_object_textblock.c 
b/src/lib/evas/canvas/evas_object_textblock.c
index 93c7a4b5d5..edef5e88f1 100644
--- a/src/lib/evas/canvas/evas_object_textblock.c
+++ b/src/lib/evas/canvas/evas_object_textblock.c
@@ -16781,7 +16781,7 @@ 
_efl_canvas_textblock_efl_text_format_text_horizontal_align_auto_type_set(Eo *ob
      {
         _FMT_SET(halign_auto, EVAS_TEXTBLOCK_ALIGN_AUTO_LOCALE);
      }
-   else if (type == EFL_TEXT_FORMAT_HORIZONTAL_ALIGNMENT_AUTO_TYPE_END)
+   else if (type == EFL_TEXT_FORMAT_HORIZONTAL_ALIGNMENT_AUTO_TYPE_OPPOSITE)
      {
         _FMT_SET(halign_auto, EVAS_TEXTBLOCK_ALIGN_AUTO_END);
      }
@@ -16799,7 +16799,7 @@ 
_efl_canvas_textblock_efl_text_format_text_horizontal_align_auto_type_get(const
      }
    else if (_FMT(halign_auto) == EVAS_TEXTBLOCK_ALIGN_AUTO_END)
      {
-        ret = EFL_TEXT_FORMAT_HORIZONTAL_ALIGNMENT_AUTO_TYPE_END;
+        ret = EFL_TEXT_FORMAT_HORIZONTAL_ALIGNMENT_AUTO_TYPE_OPPOSITE;
      }
    else if (_FMT(halign_auto) == EVAS_TEXTBLOCK_ALIGN_AUTO_LOCALE)
      {

-- 


Reply via email to