]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/ScintillaWX.h
remove the unneeded +1 from wxGauge::SetValue() call in Update()
[wxWidgets.git] / src / stc / ScintillaWX.h
index cdad2be175a58fcdf9c2bee9a47614031862f2d6..cba72489834b6fd2d9496f4b2fdb7943647618ba 100644 (file)
@@ -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