BINDINGS/cxx/elementaryxx: Applied elm_entry API changes. Fixed build

break.


SVN revision: 59316
This commit is contained in:
Daniel Juyung Seo 2011-05-11 06:28:37 +00:00
parent 3eb559d0ba
commit 1cdd15b59a
4 changed files with 6 additions and 6 deletions

View File

@ -43,7 +43,7 @@ public:
void insertText (const std::string &entry); void insertText (const std::string &entry);
void setLineWrap (bool wrap); void setLineWrap (Elm_Wrap_Type wrap);
void setEditable (bool editable); void setEditable (bool editable);

View File

@ -21,9 +21,9 @@ public:
const std::string getLabel () const; 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); void setWrapWidth (Evas_Coord w);

View File

@ -54,7 +54,7 @@ void Entry::insertText (const std::string &entry)
elm_entry_entry_insert (o, entry.c_str ()); 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); elm_entry_line_wrap_set (o, wrap);
} }

View File

@ -32,12 +32,12 @@ const std::string Label::getLabel () const
return elm_label_label_get (o); 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); elm_label_line_wrap_set (o, wrap);
} }
bool Label::getLineWrap () const Elm_Wrap_Type Label::getLineWrap () const
{ {
return elm_label_line_wrap_get (o); return elm_label_line_wrap_get (o);
} }