diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-09 23:49:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-09 23:49:53 +0100 |
commit | 3c1dc460ae9d4f49878795c9b5a2988dd928a612 (patch) | |
tree | 6fc9fc072cc0fa068c9f9ebbd8cb48aadadea3ac | |
parent | af35e637220abd5be906d73a6481631bca48d16a (diff) |
loplugin:cstylecast
Change-Id: If35fa5d97cec6c167bb0841da1e6819e5a4caf13
-rw-r--r-- | fpicker/source/aqua/NSURL_OOoAdditions.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/aqua/NSURL_OOoAdditions.mm b/fpicker/source/aqua/NSURL_OOoAdditions.mm index 232b7520220e..1fc59afcda50 100644 --- a/fpicker/source/aqua/NSURL_OOoAdditions.mm +++ b/fpicker/source/aqua/NSURL_OOoAdditions.mm @@ -79,7 +79,7 @@ NSString* resolveAlias( NSString* i_pSystemPath ) { NSString* pResolvedPath = nil; CFURLRef rUrl = CFURLCreateWithFileSystemPath( kCFAllocatorDefault, - (CFStringRef)i_pSystemPath, + reinterpret_cast<CFStringRef>(i_pSystemPath), kCFURLPOSIXPathStyle, false); if( rUrl != NULL ) { |