Module: wine Branch: master Commit: 1eca24bd6bd7598b9d6b039b81fc4b31b72e119a URL: http://source.winehq.org/git/wine.git/?a=commit;h=1eca24bd6bd7598b9d6b039b81...
Author: Huw Davies huw@codeweavers.com Date: Thu Feb 9 11:19:01 2012 +0000
gdi32: Rename a shadow variable.
---
dlls/gdi32/font.c | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c index 71e0857..03314a8 100644 --- a/dlls/gdi32/font.c +++ b/dlls/gdi32/font.c @@ -2340,21 +2340,21 @@ BOOL WINAPI ExtTextOutW( HDC hdc, INT x, INT y, UINT flags, if(!(flags & ETO_OPAQUE) || x < rc.left || x + width.x >= rc.right || y - tm.tmAscent < rc.top || y + tm.tmDescent >= rc.bottom) { - RECT rc; - rc.left = x; - rc.right = x + width.x; - rc.top = y - tm.tmAscent; - rc.bottom = y + tm.tmDescent; + RECT text_box; + text_box.left = x; + text_box.right = x + width.x; + text_box.top = y - tm.tmAscent; + text_box.bottom = y + tm.tmDescent;
if(flags & ETO_CLIPPED) { - rc.left = max(lprect->left, rc.left); - rc.right = min(lprect->right, rc.right); - rc.top = max(lprect->top, rc.top); - rc.bottom = min(lprect->bottom, rc.bottom); + text_box.left = max(lprect->left, text_box.left); + text_box.right = min(lprect->right, text_box.right); + text_box.top = max(lprect->top, text_box.top); + text_box.bottom = min(lprect->bottom, text_box.bottom); } - if(rc.left < rc.right && rc.top < rc.bottom) - physdev->funcs->pExtTextOut( physdev, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL ); + if(text_box.left < text_box.right && text_box.top < text_box.bottom) + physdev->funcs->pExtTextOut( physdev, 0, 0, ETO_OPAQUE, &text_box, NULL, 0, NULL ); } } }