1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00

Move some not-compiled-in debug code somewhere more useful.

[originally from svn r9065]
This commit is contained in:
Jacob Nevins 2010-12-29 22:38:36 +00:00
parent 3a691b5e0d
commit 46355d29ae

View File

@ -1326,6 +1326,10 @@ debug(("\n rect: [%d,%d %d,%d]\n", newrc.left, newrc.top, newrc.right,
exact_textout(hdc, xp, y, &newrc, lpString+i, j-i, exact_textout(hdc, xp, y, &newrc, lpString+i, j-i,
font_varpitch ? NULL : lpDx+i, opaque); font_varpitch ? NULL : lpDx+i, opaque);
} else { } else {
newrc.left = lprc->left + xp - x;
newrc.right = lprc->left + xn - x;
newrc.top = lprc->top;
newrc.bottom = lprc->bottom;
#ifdef FIXME_REMOVE_BEFORE_CHECKIN #ifdef FIXME_REMOVE_BEFORE_CHECKIN
{ {
int k; int k;
@ -1334,10 +1338,6 @@ for(k=0;k<j-i;k++)debug((" U+%04X", lpString[i+k]));
debug(("\n rect: [%d,%d %d,%d]\n", newrc.left, newrc.top, newrc.right, newrc.bottom)); debug(("\n rect: [%d,%d %d,%d]\n", newrc.left, newrc.top, newrc.right, newrc.bottom));
} }
#endif #endif
newrc.left = lprc->left + xp - x;
newrc.right = lprc->left + xn - x;
newrc.top = lprc->top;
newrc.bottom = lprc->bottom;
ExtTextOutW(hdc, xp, y, ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0), ExtTextOutW(hdc, xp, y, ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0),
&newrc, lpString+i, j-i, &newrc, lpString+i, j-i,
font_varpitch ? NULL : lpDx+i); font_varpitch ? NULL : lpDx+i);