aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CallTip.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-10-28 05:08:21 +0000
committernyamatongwe <unknown>2001-10-28 05:08:21 +0000
commitdcdc0127cd5edf2e2f7f9d0d49a4ab5d93a94986 (patch)
treeb2b80c00705f988876282127e462bfb3b3ff2180 /src/CallTip.cxx
parent144d8ad47767077a8205eae0a2749be7dab2b407 (diff)
downloadscintilla-mirror-dcdc0127cd5edf2e2f7f9d0d49a4ab5d93a94986.tar.gz
Hid implementation of Surface.
Changed DrawText to DrawTextNoClip to avoid name clash with macro.
Diffstat (limited to 'src/CallTip.cxx')
-rw-r--r--src/CallTip.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CallTip.cxx b/src/CallTip.cxx
index 807b745f6..4e075cf23 100644
--- a/src/CallTip.cxx
+++ b/src/CallTip.cxx
@@ -81,7 +81,7 @@ void CallTip::PaintCT(Surface *surfaceWindow) {
rcClient.left = x;
rcClient.top = ytext - ascent - 1;
rcClient.right = xEnd;
- surfaceWindow->DrawText(rcClient, font, ytext,
+ surfaceWindow->DrawTextNoClip(rcClient, font, ytext,
chunkVal, thisStartHighlight,
colourUnSel.allocated, colourBG.allocated);
x = xEnd;
@@ -91,7 +91,7 @@ void CallTip::PaintCT(Surface *surfaceWindow) {
rcClient.top = ytext;
rcClient.left = x;
rcClient.right = xEnd;
- surfaceWindow->DrawText(rcClient, font, ytext,
+ surfaceWindow->DrawTextNoClip(rcClient, font, ytext,
chunkVal + thisStartHighlight, thisEndHighlight - thisStartHighlight,
colourSel.allocated, colourBG.allocated);
x = xEnd;
@@ -100,7 +100,7 @@ void CallTip::PaintCT(Surface *surfaceWindow) {
chunkLength - thisEndHighlight);
rcClient.left = x;
rcClient.right = xEnd;
- surfaceWindow->DrawText(rcClient, font, ytext,
+ surfaceWindow->DrawTextNoClip(rcClient, font, ytext,
chunkVal + thisEndHighlight, chunkLength - thisEndHighlight,
colourUnSel.allocated, colourBG.allocated);
chunkVal = chunkEnd + 1;