]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/stc/ScintillaWX.cpp
implemented wxTE_RIGHT, wxTE_CENTRE for wxGTK2 (patch 957687)
[wxWidgets.git] / contrib / src / stc / ScintillaWX.cpp
index 62ac066fb93b56683f92c7cbea8410d0002f8613..485b612cc995a46a6413af7844b4438f6a70b0b8 100644 (file)
@@ -547,7 +547,7 @@ void ScintillaWX::DoPaint(wxDC* dc, wxRect rect) {
     if (paintState == paintAbandoned) {
         // Painting area was insufficient to cover new styling or brace
         // highlight positions
-        FullPaint(dc);
+        FullPaint();
     }
     paintState = notPainting;
     dc->EndDrawing();
@@ -862,7 +862,7 @@ void ScintillaWX::DoDragLeave() {
 //----------------------------------------------------------------------
 
 // Force the whole window to be repainted
-void ScintillaWX::FullPaint(wxDC *dc) {
+void ScintillaWX::FullPaint() {
     stc->Refresh(false);
     stc->Update();
 }