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 /canvas | |
parent | 4067e629f7fc9e93b8eb36fffc5fdcc0c3fa8906 (diff) |
Nah, don't obscure the right type with void*
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/cairo/cairo_textlayout.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/canvas/source/cairo/cairo_textlayout.cxx b/canvas/source/cairo/cairo_textlayout.cxx index 30493f9e2e63..adea863a6837 100644 --- a/canvas/source/cairo/cairo_textlayout.cxx +++ b/canvas/source/cairo/cairo_textlayout.cxx @@ -511,7 +511,7 @@ namespace cairocanvas // when CGFont (Mac OS X 10.5 API) is provided by the AQUA VCL backend. font_face = cairo_quartz_font_face_create_for_atsu_font_id((ATSUFontID) rSysFontData.aATSUFontID); # else // iOS - font_face = cairo_quartz_font_face_create_for_cgfont( CTFontCopyGraphicsFont( (CTFontRef) rSysFontData.rCTFont, NULL ) ); + font_face = cairo_quartz_font_face_create_for_cgfont( CTFontCopyGraphicsFont( rSysFontData.rCTFont, NULL ) ); # endif #elif defined CAIRO_HAS_WIN32_SURFACE |