diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-04-15 08:32:29 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-04-15 11:56:48 +0200 |
commit | 5d369a2ca7d4511701484ee24f7b19b246f410ee (patch) | |
tree | c026360f82d3e8b251117eef96335976e99cca57 /vcl/ios/source | |
parent | 4067e629f7fc9e93b8eb36fffc5fdcc0c3fa8906 (diff) |
Nah, don't obscure the right type with void*
Diffstat (limited to 'vcl/ios/source')
-rw-r--r-- | vcl/ios/source/gdi/salgdi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/ios/source/gdi/salgdi.cxx b/vcl/ios/source/gdi/salgdi.cxx index f7f6bcdbcf26..32cc9fbbf89f 100644 --- a/vcl/ios/source/gdi/salgdi.cxx +++ b/vcl/ios/source/gdi/salgdi.cxx @@ -204,7 +204,7 @@ SystemFontData IosSalGraphics::GetSysFontData( int /* nFallbacklevel */ ) const CTFontRef font = CTFontCreateUIFontForLanguage(kCTFontSystemFontType, 0.0, NULL); font = (CTFontRef)CFRetain(font); - aSysFontData.rCTFont = (void*)font; + aSysFontData.rCTFont = font; CTFontRef italic_font = CTFontCreateCopyWithSymbolicTraits( font, 0.0, |