mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
This reverts commit2d4d3f5fce
. Reverts #2146. I think #2135 (e329e83
) and #2146 (2d4d3f5
) are my mistakes. CORE-16552, CORE-16747
This commit is contained in:
parent
10e52f68b2
commit
66b0a48a75
2 changed files with 0 additions and 8 deletions
|
@ -1211,11 +1211,7 @@ static UINT BUTTON_CalcLabelRect(const BUTTON_INFO *infoPtr, HDC hdc, RECT *rc)
|
|||
}
|
||||
|
||||
if ((hFont = infoPtr->font)) hPrevFont = SelectObject( hdc, hFont );
|
||||
#ifdef __REACTOS__
|
||||
DrawTextW(hdc, text, -1, &r, ((dtStyle | DT_CALCRECT) & ~(DT_VCENTER | DT_BOTTOM)));
|
||||
#else
|
||||
DrawTextW(hdc, text, -1, &r, dtStyle | DT_CALCRECT);
|
||||
#endif
|
||||
if (hPrevFont) SelectObject( hdc, hPrevFont );
|
||||
heap_free( text );
|
||||
#ifdef __REACTOS__
|
||||
|
|
|
@ -773,11 +773,7 @@ static UINT BUTTON_CalcLabelRect(HWND hwnd, HDC hdc, RECT *rc)
|
|||
}
|
||||
|
||||
if ((hFont = get_button_font( hwnd ))) hPrevFont = SelectObject( hdc, hFont );
|
||||
#ifdef __REACTOS__
|
||||
DrawTextW(hdc, text, -1, &r, ((dtStyle | DT_CALCRECT) & ~(DT_VCENTER | DT_BOTTOM)));
|
||||
#else
|
||||
DrawTextW(hdc, text, -1, &r, dtStyle | DT_CALCRECT);
|
||||
#endif
|
||||
if (hPrevFont) SelectObject( hdc, hPrevFont );
|
||||
HeapFree( GetProcessHeap(), 0, text );
|
||||
#ifdef __REACTOS__
|
||||
|
|
Loading…
Reference in a new issue