Commit 4bd7128f authored by Bertho Stultiens's avatar Bertho Stultiens Committed by Alexandre Julliard

Fix typo to map GetTextExtentPoint to the correct 32A version.

parent 69c0bbea
......@@ -2132,7 +2132,7 @@ TREEVIEW_CreateDragImage (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
hdc=CreateCompatibleDC32 (htopdc);
hOldFont=SelectObject32 (hdc, infoPtr->hFont);
GetTextExtentPoint32 (hdc, itemtxt, lstrlen32A (itemtxt), &size);
GetTextExtentPoint32A (hdc, itemtxt, lstrlen32A (itemtxt), &size);
TRACE (treeview,"%d %d %s %d\n",size.cx,size.cy,itemtxt,lstrlen32A(itemtxt));
hbmp=CreateCompatibleBitmap32 (htopdc, size.cx, size.cy);
hOldbmp=SelectObject32 (hdc, hbmp);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment