diff options
Diffstat (limited to 'win/tkWinDraw.c')
-rw-r--r-- | win/tkWinDraw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tkWinDraw.c b/win/tkWinDraw.c index d053e78..71410da 100644 --- a/win/tkWinDraw.c +++ b/win/tkWinDraw.c @@ -1448,7 +1448,7 @@ TkWinFillRect( rect.bottom = y + height; oldColor = SetBkColor(dc, (COLORREF)pixel); SetBkMode(dc, OPAQUE); - ExtTextOut(dc, 0, 0, ETO_OPAQUE, &rect, NULL, 0, NULL); + ExtTextOutW(dc, 0, 0, ETO_OPAQUE, &rect, NULL, 0, NULL); SetBkColor(dc, oldColor); } |