dlls/comctl32/commctrl.c

Ge van Geldorp gvg at reactos.com
Sun Dec 5 16:55:29 CST 2004


Changelog:
  Eric Kohl <eric.kohl at t-online.de>
  - DrawStatusText() must not process prefix characters.

Index: dlls/comctl32/commctrl.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/commctrl.c,v
retrieving revision 1.88
diff -u -r1.88 commctrl.c
--- dlls/comctl32/commctrl.c	19 Oct 2004 22:59:59 -0000	1.88
+++ dlls/comctl32/commctrl.c	5 Dec 2004 23:47:53 -0000
@@ -482,7 +482,7 @@
         r.left += 3;
         if (style & SBT_RTLREADING)
 	    FIXME("Unsupported RTL style!\n");
-        DrawTextW (hdc, text, -1, &r, align|DT_VCENTER|DT_SINGLELINE);
+        DrawTextW (hdc, text, -1, &r, align|DT_VCENTER|DT_SINGLELINE|DT_NOPREFIX);
 	SetBkMode(hdc, oldbkmode);
     }
 }



More information about the wine-patches mailing list