Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 438532
Collapse All | Expand All

(-)a/dlls/user32/winpos.c (-3 / +1 lines)
Lines 250-257 BOOL WINAPI ClientToScreen( HWND hwnd, LPPOINT lppnt ) Link Here
250
 */
250
 */
251
BOOL WINAPI ScreenToClient( HWND hwnd, LPPOINT lppnt )
251
BOOL WINAPI ScreenToClient( HWND hwnd, LPPOINT lppnt )
252
{
252
{
253
    MapWindowPoints( 0, hwnd, lppnt, 1 );
253
    return MapWindowPoints( 0, hwnd, lppnt, 1 ) != 0;
254
    return TRUE;
255
}
254
}
256
255
257
256
258
- 

Return to bug 438532