diff options
Diffstat (limited to 'views/controls/textfield/textfield.h')
-rw-r--r-- | views/controls/textfield/textfield.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/controls/textfield/textfield.h b/views/controls/textfield/textfield.h index 7b9c393..71bdf49 100644 --- a/views/controls/textfield/textfield.h +++ b/views/controls/textfield/textfield.h @@ -184,6 +184,10 @@ class Textfield : public View { bool draw_border() const { return draw_border_; } void RemoveBorder(); + // Updates all properties on the textfield. This is invoked internally. + // Users of Textfield never need to invoke this directly. + void UpdateAllProperties(); + // Invoked by the edit control when the value changes. This method set // the text_ member variable to the value contained in edit control. // This is important because the edit control can be replaced if it has @@ -216,10 +220,6 @@ class Textfield : public View { virtual void ViewHierarchyChanged(bool is_add, View* parent, View* child); virtual std::string GetClassName() const; - // Creates a new native wrapper properly initialized and returns it. Ownership - // is passed to the caller. - NativeTextfieldWrapper* CreateWrapper(); - // The object that actually implements the native text field. NativeTextfieldWrapper* native_wrapper_; |