]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.h.in
merge msw/gsocket.cpp into msw/sockmsw.cpp
[wxWidgets.git] / src / stc / stc.h.in
index 1f2622784ffdae517154d119465c1a41da321f6c..85a64a7a19166ef1d2ac39522a6544cb8e72bf98 100644 (file)
@@ -77,7 +77,7 @@ class  WordList;
 struct SCNotification;
 
 #ifndef SWIG
-extern WXDLLIMPEXP_STC const wxChar* wxSTCNameStr;
+extern WXDLLIMPEXP_DATA_STC(const char) wxSTCNameStr[];
 class  WXDLLIMPEXP_FWD_STC wxStyledTextCtrl;
 class  WXDLLIMPEXP_FWD_STC wxStyledTextEvent;
 #endif
@@ -339,7 +339,7 @@ public:
         if ( to )
             *to = GetSelectionEnd();
     }
-    
+
     // kept for compatibility only
     void GetSelection(int *from, int *to)
     {
@@ -351,7 +351,7 @@ public:
             *to = t;
     }
 #endif
-    
+
     virtual bool IsEditable() const { return !GetReadOnly(); }
     virtual void SetEditable(bool editable) { SetReadOnly(!editable); }
 
@@ -430,6 +430,14 @@ public:
         return wxTE_HT_ON_TEXT;
     }
 
+    // just unhide it
+    virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
+                                            wxTextCoord *col,
+                                            wxTextCoord *row) const
+    {
+        return wxTextAreaBase::HitTest(pt, col, row);
+    }
+
 #ifndef SWIG
 protected:
     virtual bool DoLoadFile(const wxString& file, int fileType);