diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-04 16:09:58 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-04 16:11:44 +0200 |
commit | a96f593b415390f7f218e5772930d127a832eb43 (patch) | |
tree | a4cf5bcc44e67fe503fb399d36276d82fee1866e /vcl/inc | |
parent | 424e936fc095c676a24c04acdd1eb1fbb6a27bed (diff) |
Some more sal_IntPtr dance, but enough for today
Change-Id: Ic772181321e74713244223cc3d4542bd4cd2dc88
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/win/wincomp.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/win/wincomp.hxx b/vcl/inc/win/wincomp.hxx index e6c7fd0c3318..8660c1b3ded7 100644 --- a/vcl/inc/win/wincomp.hxx +++ b/vcl/inc/win/wincomp.hxx @@ -135,7 +135,7 @@ inline void SetWindowFont( HWND hWnd, HFONT hFont, BOOL bRedraw ) inline HFONT GetWindowFont( HWND hWnd ) { - return (HFONT)(UINT)SendMessage( hWnd, WM_GETFONT, 0, 0 ); + return (HFONT) SendMessage( hWnd, WM_GETFONT, 0, 0 ); } inline void SetClassCursor( HWND hWnd, HCURSOR hCursor ) |