]> git.saurik.com Git - wxWidgets.git/commitdiff
Add wxStyledTextCtrl::SelectNone() to the template header file too.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 20 Sep 2012 10:20:18 +0000 (10:20 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 20 Sep 2012 10:20:18 +0000 (10:20 +0000)
This method was only added to the generated include/wx/stc/stc.h but not to
src/stc/stc.h.in from which it is created in r72490, do update the latter file
too now.

See #12960.

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

src/stc/stc.h.in

index bfe4f0d49e15fa2bc466a1cd456daf6a1d3033fe..659ae4dc5641334f4469966b306878f95424bfd5 100644 (file)
@@ -329,6 +329,11 @@ public:
         }
     }
 
+    virtual void SelectNone()
+    {
+        ClearSelections();
+    }
+
 #ifdef SWIG
     void GetSelection(long* OUTPUT, long* OUTPUT) const;
 #else