From 33e659d77a094c09076f4d8e679fce88803eb96b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 20 Sep 2012 10:20:18 +0000 Subject: [PATCH] Add wxStyledTextCtrl::SelectNone() to the template header file too. 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 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/stc/stc.h.in b/src/stc/stc.h.in index bfe4f0d49e..659ae4dc56 100644 --- a/src/stc/stc.h.in +++ b/src/stc/stc.h.in @@ -329,6 +329,11 @@ public: } } + virtual void SelectNone() + { + ClearSelections(); + } + #ifdef SWIG void GetSelection(long* OUTPUT, long* OUTPUT) const; #else -- 2.45.2