summaryrefslogtreecommitdiff
path: root/vcl/osx/saldata.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-04 08:47:31 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-04 08:47:47 +0100
commit083f517ca3c037a1d36e6f5ea830366f24659f22 (patch)
treed35f9a0d9b4c9236e042beba7ae35a804de28ff3 /vcl/osx/saldata.cxx
parent2e9816e59f7f44356b5bdc8d0e7da21cdd497f9a (diff)
vcl (Mac): loplugin:cstylecast
Change-Id: Ic46623380f026a8dfcc74c895db35a06bcea1ead
Diffstat (limited to 'vcl/osx/saldata.cxx')
-rw-r--r--vcl/osx/saldata.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/saldata.cxx b/vcl/osx/saldata.cxx
index f4dc179fe4f1..a2a8b857a759 100644
--- a/vcl/osx/saldata.cxx
+++ b/vcl/osx/saldata.cxx
@@ -30,7 +30,7 @@ oslThreadKey SalData::s_aAutoReleaseKey = 0;
static void SAL_CALL releasePool( void* pPool )
{
if( pPool )
- [(NSAutoreleasePool*)pPool release];
+ [static_cast<NSAutoreleasePool*>(pPool) release];
}
SalData::SalData()
@@ -230,7 +230,7 @@ NSCursor* SalData::getCursor( PointerStyle i_eStyle )
CFURLRef hURL = CFBundleCopyResourceURL( hMain, pCursorName, CFSTR("png"), CFSTR("cursors") );
if( hURL )
{
- pCurs = [[NSCursor alloc] initWithImage: [[NSImage alloc] initWithContentsOfURL: (NSURL*)hURL] hotSpot: aHotSpot];
+ pCurs = [[NSCursor alloc] initWithImage: [[NSImage alloc] initWithContentsOfURL: const_cast<NSURL*>(static_cast<NSURL const *>(hURL))] hotSpot: aHotSpot];
CFRelease( hURL );
}
CFRelease( pCursorName );