X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cadea444a0071f2fc92d1a98eed40766dbfbc473..b53190ef7ed59cda12dca8c63b88e7bd40b67168:/contrib/src/stc/ScintillaWX.cpp diff --git a/contrib/src/stc/ScintillaWX.cpp b/contrib/src/stc/ScintillaWX.cpp index 62ac066fb9..6fd051521e 100644 --- a/contrib/src/stc/ScintillaWX.cpp +++ b/contrib/src/stc/ScintillaWX.cpp @@ -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(); }