]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/stc/ScintillaWX.cpp
Add each line independently
[wxWidgets.git] / contrib / src / stc / ScintillaWX.cpp
index 62ac066fb93b56683f92c7cbea8410d0002f8613..6fd051521ea241e54fcb264f9711c34ee8d78495 100644 (file)
@@ -1,6 +1,6 @@
 ////////////////////////////////////////////////////////////////////////////
 // Name:        ScintillaWX.cxx
-// Purpose:     A wxWindows implementation of Scintilla.  A class derived
+// Purpose:     A wxWidgets implementation of Scintilla.  A class derived
 //              from ScintillaBase that uses the "wx platform" defined in
 //              PlatformWX.cxx  This class is one end of a bridge between
 //              the wx world and the Scintilla world.  It needs a peer
@@ -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();
 }