]> git.saurik.com Git - wxWidgets.git/commitdiff
Use common wxTextCtrlBase::GetRange() for PalmOS text control implementation.
authorWłodzimierz Skiba <abx@abx.art.pl>
Mon, 4 Jul 2005 11:21:46 +0000 (11:21 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Mon, 4 Jul 2005 11:21:46 +0000 (11:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/palmos/textctrl.h
src/palmos/textctrl.cpp

index 95b50e33c799045794c741c7c2be4ae1d60e8146..81ef8e8bb1c6fb03967ef3fd46aa39e0d81930fb 100644 (file)
@@ -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;
index ed4f70fcbf66f010b00dd0602c06361dba597974..1656580262d719694f719d8b97f9e2aed4e5fbbd 100644 (file)
@@ -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)
 {
 }