]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/ScintillaWX.h
GetLabelTop should return the stripped label, for compatibility.
[wxWidgets.git] / src / stc / ScintillaWX.h
index cdad2be175a58fcdf9c2bee9a47614031862f2d6..26e9c239e58361882c97cd51d3ea3d6e3e7ce469 100644 (file)
@@ -60,8 +60,8 @@
 //----------------------------------------------------------------------
 
 
-class WXDLLIMPEXP_CORE wxDC;
-class WXDLLIMPEXP_STC wxStyledTextCtrl;           // forward
+class WXDLLIMPEXP_FWD_CORE wxDC;
+class WXDLLIMPEXP_FWD_STC wxStyledTextCtrl;           // forward
 class ScintillaWX;
 
 
@@ -72,7 +72,7 @@ class ScintillaWX;
 class wxSTCDropTarget : public wxTextDropTarget {
 public:
     void SetScintilla(ScintillaWX* swx) {
-        this->swx = swx;
+        m_swx = swx;
     }
 
     bool OnDropText(wxCoord x, wxCoord y, const wxString& data);
@@ -81,7 +81,7 @@ public:
     void OnLeave();
 
 private:
-    ScintillaWX* swx;
+    ScintillaWX* m_swx;
 };
 #endif