summaryrefslogtreecommitdiffstats
path: root/src/Editor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor.cpp')
-rwxr-xr-xsrc/Editor.cpp6
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);