tasn pushed a commit to branch master.

http://git.enlightenment.org/bindings/cxx/eflxx.git/commit/?id=1cdd15b59aa70b6c6ce78e99e60d2a2ca9c75a5d

commit 1cdd15b59aa70b6c6ce78e99e60d2a2ca9c75a5d
Author: Daniel Juyung Seo <[email protected]>
Date:   Wed May 11 06:28:37 2011 +0000

    BINDINGS/cxx/elementaryxx: Applied elm_entry API changes. Fixed build
    break.
    
    
    SVN revision: 59316
---
 elementaryxx/include/elementaryxx/Entry.h | 2 +-
 elementaryxx/include/elementaryxx/Label.h | 4 ++--
 elementaryxx/src/Entry.cpp                | 2 +-
 elementaryxx/src/Label.cpp                | 4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/elementaryxx/include/elementaryxx/Entry.h 
b/elementaryxx/include/elementaryxx/Entry.h
index 528ae2f..5866cc1 100644
--- a/elementaryxx/include/elementaryxx/Entry.h
+++ b/elementaryxx/include/elementaryxx/Entry.h
@@ -43,7 +43,7 @@ public:
   
   void insertText (const std::string &entry);
   
-  void setLineWrap (bool wrap);
+  void setLineWrap (Elm_Wrap_Type wrap);
   
   void setEditable (bool editable);
   
diff --git a/elementaryxx/include/elementaryxx/Label.h 
b/elementaryxx/include/elementaryxx/Label.h
index d7061dc..56c5f35 100644
--- a/elementaryxx/include/elementaryxx/Label.h
+++ b/elementaryxx/include/elementaryxx/Label.h
@@ -21,9 +21,9 @@ public:
 
   const std::string getLabel () const;
 
-  void setLineWrap (bool wrap);
+  void setLineWrap (Elm_Wrap_Type wrap);
 
-  bool getLineWrap () const;
+  Elm_Wrap_Type getLineWrap () const;
 
   void setWrapWidth (Evas_Coord w);
 
diff --git a/elementaryxx/src/Entry.cpp b/elementaryxx/src/Entry.cpp
index 5c3daf2..6d1a8a3 100644
--- a/elementaryxx/src/Entry.cpp
+++ b/elementaryxx/src/Entry.cpp
@@ -54,7 +54,7 @@ void Entry::insertText (const std::string &entry)
   elm_entry_entry_insert (o, entry.c_str ());
 }
 
-void Entry::setLineWrap (bool wrap)
+void Entry::setLineWrap (Elm_Wrap_Type wrap)
 {
   elm_entry_line_wrap_set (o, wrap);
 }
diff --git a/elementaryxx/src/Label.cpp b/elementaryxx/src/Label.cpp
index 971ffb5..72dfaf3 100644
--- a/elementaryxx/src/Label.cpp
+++ b/elementaryxx/src/Label.cpp
@@ -32,12 +32,12 @@ const std::string Label::getLabel () const
   return elm_label_label_get (o);
 }
 
-void Label::setLineWrap (bool wrap)
+void Label::setLineWrap (Elm_Wrap_Type wrap)
 {
   elm_label_line_wrap_set (o, wrap);
 }
 
-bool Label::getLineWrap () const
+Elm_Wrap_Type Label::getLineWrap () const
 {
   return elm_label_line_wrap_get (o);
 }

-- 


Reply via email to