From b4c4f1bca7122b55f3ede5633dbaa6da6da5c91f Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Mon, 4 Jul 2005 11:21:46 +0000 Subject: [PATCH] Use common wxTextCtrlBase::GetRange() for PalmOS text control implementation. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/palmos/textctrl.h | 2 -- src/palmos/textctrl.cpp | 7 ------- 2 files changed, 9 deletions(-) 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) { } -- 2.50.0