mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
uxtheme: Properly initialize text drawing options.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0f98b0bb29
commit
ce50a7ff4d
1 changed files with 1 additions and 1 deletions
|
@ -1636,7 +1636,7 @@ HRESULT WINAPI DrawThemeText(HTHEME hTheme, HDC hdc, int iPartId, int iStateId,
|
|||
LPCWSTR pszText, int iCharCount, DWORD flags,
|
||||
DWORD flags2, const RECT *pRect)
|
||||
{
|
||||
DTTOPTS opts;
|
||||
DTTOPTS opts = { 0 };
|
||||
RECT rt;
|
||||
|
||||
TRACE("%d %d\n", iPartId, iStateId);
|
||||
|
|
Loading…
Reference in a new issue