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 | |
parent | c03d5480ab0242a8e6b03b466d90d32d39303e71 (diff) | |
download | tqscintilla-1aef904f94a86fecbc71888bc94a790ff36f0403.tar.gz tqscintilla-1aef904f94a86fecbc71888bc94a790ff36f0403.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src')
-rwxr-xr-x | src/CallTip.cpp | 2 | ||||
-rwxr-xr-x | src/CallTip.h | 2 | ||||
-rwxr-xr-x | src/Editor.cpp | 6 | ||||
-rwxr-xr-x | src/LineMarker.cpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/CallTip.cpp b/src/CallTip.cpp index 2de8eae..f4bc5f8 100755 --- a/src/CallTip.cpp +++ b/src/CallTip.cpp @@ -214,7 +214,7 @@ void CallTip::PaintCT(Surface *surfaceWindow) { surfaceWindow->FillRectangle(rcClient, colourBG.allocated); - offsetMain = insetX; // initial tqalignment assuming no arrows + offsetMain = insetX; // initial alignment assuming no arrows PaintContents(surfaceWindow, true); // Draw a raised border around the edges of the window diff --git a/src/CallTip.h b/src/CallTip.h index 1fd38c3..9848a10 100755 --- a/src/CallTip.h +++ b/src/CallTip.h @@ -18,7 +18,7 @@ class CallTip { PRectangle rectUp; // rectangle of last up angle in the tip PRectangle rectDown; // rectangle of last down arrow in the tip int lineHeight; // vertical line spacing - int offsetMain; // The tqalignment point of the call tip + int offsetMain; // The alignment point of the call tip int tabSize; // Tab size in pixels, <=0 no TAB expand bool useStyleCallTip; // if true, STYLE_CALLTIP should be used 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); diff --git a/src/LineMarker.cpp b/src/LineMarker.cpp index 2af78b5..6ded13c 100755 --- a/src/LineMarker.cpp +++ b/src/LineMarker.cpp @@ -68,7 +68,7 @@ void LineMarker::Draw(Surface *surface, PRectangle &rcWhole, Font &fontForCharac pxpm->Draw(surface, rcWhole); return; } - // Restrict most tqshapes a bit + // Restrict most shapes a bit PRectangle rc = rcWhole; rc.top++; rc.bottom--; |