diff --git a/include/wx/palmos/textctrl.h b/include/wx/palmos/textctrl.h index 95b50e33c7..81ef8e8bb1 100644 --- a/include/wx/palmos/textctrl.h +++ b/include/wx/palmos/textctrl.h @@ -51,8 +51,6 @@ public: virtual wxString GetValue() const; virtual void SetValue(const wxString& value); - virtual wxString GetRange(long from, long to) const; - virtual int GetLineLength(long lineNo) const; virtual wxString GetLineText(long lineNo) const; virtual int GetNumberOfLines() const; diff --git a/src/palmos/textctrl.cpp b/src/palmos/textctrl.cpp index ed4f70fcbf..1656580262 100644 --- a/src/palmos/textctrl.cpp +++ b/src/palmos/textctrl.cpp @@ -233,13 +233,6 @@ wxString wxTextCtrl::GetValue() const return res; } -wxString wxTextCtrl::GetRange(long from, long to) const -{ - wxString str; - - return str; -} - void wxTextCtrl::SetValue(const wxString& value) { }