]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stc/stc.h
streamlining code
[wxWidgets.git] / include / wx / stc / stc.h
index 4e53f48eede01f1cc58dc11e32f006f0486d865d..2d1386c142969c02117b4bf12ba05ab1d7fc4c26 100644 (file)
@@ -3649,7 +3649,6 @@ public:
     // ----------------------------------------------
 
     virtual void WriteText(const wxString& text) { AddText(text); }
-    virtual wxString GetValue() const { return GetText(); }
     virtual void Remove(long from, long to)
     {
         Replace(from, to, "");
@@ -3802,8 +3801,11 @@ public:
         return wxTextAreaBase::HitTest(pt, col, row);
     }
 
-#ifndef SWIG
 protected:
+    virtual wxString DoGetValue() const { return GetText(); }
+    virtual wxWindow *GetEditableWindow() { return this; }
+
+#ifndef SWIG
     virtual bool DoLoadFile(const wxString& file, int fileType);
     virtual bool DoSaveFile(const wxString& file, int fileType);