]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove the now unnecessary wxRichTextCtrl::SelectAll().
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 27 Sep 2012 22:40:46 +0000 (22:40 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 27 Sep 2012 22:40:46 +0000 (22:40 +0000)
It is already inherited from the base wxTextEntry class.

See #14701.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/richtext/richtextctrl.h
src/richtext/richtextctrl.cpp

index 9cc8364f6dbfade3901cda0ad975145b24bc7491..efd4959840e1b9693938ba442409341751284af5 100644 (file)
@@ -1007,12 +1007,6 @@ public:
     void SetSelection(const wxRichTextSelection& sel) { m_selection = sel; }
     //@}
 
-
-    /**
-        Selects all the text in the buffer.
-    */
-    virtual void SelectAll();
-
     /**
         Makes the control editable, or not.
     */
index 1b0a084f8672e23003a54f606a3117332b29003d..9b40064ee808dfdf0a654a1a0fbb16e390530fd2 100644 (file)
@@ -2709,11 +2709,6 @@ wxRichTextRange wxRichTextCtrl::AddImage(const wxImage& image)
 // selection and ranges
 // ----------------------------------------------------------------------------
 
-void wxRichTextCtrl::SelectAll()
-{
-    SetSelection(-1, -1);
-}
-
 /// Select none
 void wxRichTextCtrl::SelectNone()
 {