diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-04 08:47:31 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-04 08:47:47 +0100 |
commit | 083f517ca3c037a1d36e6f5ea830366f24659f22 (patch) | |
tree | d35f9a0d9b4c9236e042beba7ae35a804de28ff3 /vcl/inc | |
parent | 2e9816e59f7f44356b5bdc8d0e7da21cdd497f9a (diff) |
vcl (Mac): loplugin:cstylecast
Change-Id: Ic46623380f026a8dfcc74c895db35a06bcea1ead
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/osx/saldata.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/osx/saldata.hxx b/vcl/inc/osx/saldata.hxx index 413754b92839..86667acbe1cd 100644 --- a/vcl/inc/osx/saldata.hxx +++ b/vcl/inc/osx/saldata.hxx @@ -59,7 +59,7 @@ struct FrameHash : public boost::hash<sal_IntPtr> { return boost::hash<sal_IntPtr>::operator()( reinterpret_cast<const sal_IntPtr>(frame) ); } }; -#define INVALID_CURSOR_PTR (NSCursor*)0xdeadbeef +#define INVALID_CURSOR_PTR reinterpret_cast<NSCursor*>(0xdeadbeef) // Singleton, instantiated from Application::Application() in // vcl/source/app/svapp.cxx through InitSalData(). |