]> git.saurik.com Git - wxWidgets.git/commitdiff
make GetEditableWindow() protected as it's used by wxGTK wxTextEntry
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 2 Mar 2009 14:03:19 +0000 (14:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 2 Mar 2009 14:03:19 +0000 (14:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/textentry.h

index c0c116a433489754a2cbee5e0a6cdb2e6c8be594..19dd21a83f97cb8127e3ca3cae979698a7614557 100644 (file)
@@ -154,6 +154,11 @@ protected:
     virtual void DoSetValue(const wxString& value, int flags);
     virtual wxString DoGetValue() const = 0;
 
+    // override this to return the associated window, it will be used for event
+    // generation and also by generic hints implementation
+    virtual wxWindow *GetEditableWindow() = 0;
+
+
     // class which should be used to temporarily disable text change events
     //
     // if suppress argument in ctor is false, nothing is done
@@ -185,11 +190,6 @@ protected:
     bool EventsAllowed() const { return m_eventsBlock == 0; }
 
 private:
-    // override this to return the associated window, it will be used for event
-    // generation and also by generic hints implementation
-    virtual wxWindow *GetEditableWindow() = 0;
-
-
     // suppress or resume the text changed events generation: don't use these
     // functions directly, use EventsSuppressor class above instead
     void SuppressTextChangedEvents()