diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-08-23 18:33:43 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-08-23 19:20:03 +0300 |
commit | 708fc1c187986796861c4dcecba2861ce272dd57 (patch) | |
tree | eddd1b2260db90b6727e69b977a4f48922b6b6b2 /vcl/source/window/winproc.cxx | |
parent | f74a6338b3897df49f3041e7ce33453eaba9e2e5 (diff) |
fdo#82577, fdo#82579: Handle Cursor
Put the vcl Cursor in the vcl namespace. Avoids collision with the Xlib Cursor
typedef and some ancient Carbon (?) Cursor typedef on OS X.
Change-Id: I7af770c522b5774c87f58cc079ced9fc1bcc88b0
Diffstat (limited to 'vcl/source/window/winproc.cxx')
-rw-r--r-- | vcl/source/window/winproc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx index 0763780b4a65..492b7a8f4b97 100644 --- a/vcl/source/window/winproc.cxx +++ b/vcl/source/window/winproc.cxx @@ -1311,7 +1311,7 @@ static void ImplHandleExtTextInputPos( Window* pWindow, rRect = pChildOutDev->ImplLogicToDevicePixel( *pRect ); else { - Cursor* pCursor = pChild->GetCursor(); + vcl::Cursor* pCursor = pChild->GetCursor(); if ( pCursor ) { Point aPos = pChildOutDev->ImplLogicToDevicePixel( pCursor->GetPos() ); |