diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:42:29 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:42:29 -0600 |
commit | 1aef904f94a86fecbc71888bc94a790ff36f0403 (patch) | |
tree | fd0070eb9a4dc25fc63b889d55f5c6198a324282 /src/Editor.cpp | |
parent | c03d5480ab0242a8e6b03b466d90d32d39303e71 (diff) | |
download | tqscintilla-1aef904f94a86fecbc71888bc94a790ff36f0403.tar.gz tqscintilla-1aef904f94a86fecbc71888bc94a790ff36f0403.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/Editor.cpp')
-rwxr-xr-x | src/Editor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Editor.cpp b/src/Editor.cpp index 045e384..db27cb0 100755 --- a/src/Editor.cpp +++ b/src/Editor.cpp @@ -2815,7 +2815,7 @@ void Editor::Paint(Surface *surfaceWindow, PRectangle rcArea) { startLineToWrap = -1; if (WrapLines(false, startLineToWrap)) { // The wrapping process has changed the height of some lines so - // abandon this paint for a complete tqrepaint. + // abandon this paint for a complete repaint. if (AbandonPaint()) { return; } @@ -3809,7 +3809,7 @@ void Editor::NotifyModified(Document*, DocModification mh, void *) { } //Platform::DebugPrintf("** %x Doc Changed\n", this); - // TODO: could tqinvalidate from mh.startModification to end of screen + // TODO: could invalidate from mh.startModification to end of screen //InvalidateRange(mh.position, mh.position + mh.length); if (paintState == notPainting && !CanDeferToLastStep(mh)) { Redraw(); @@ -5217,7 +5217,7 @@ void Editor::SetHotSpotRange(Point *pt) { int hsStart_ = pdoc->ExtendStyleRange(pos, -1, vs.hotspotSingleLine); int hsEnd_ = pdoc->ExtendStyleRange(pos, 1, vs.hotspotSingleLine); - // Only tqinvalidate the range if the hotspot range has changed... + // Only invalidate the range if the hotspot range has changed... if (hsStart_ != hsStart || hsEnd_ != hsEnd) { if (hsStart != -1) { InvalidateRange(hsStart, hsEnd); |