Kaydet (Commit) 05e9a04e authored tarafından Herbert Dürr's avatar Herbert Dürr

#i123068# remove implicit conversion from aUTF8String to its char pointer

üst c011af10
...@@ -333,7 +333,7 @@ namespace cairocanvas ...@@ -333,7 +333,7 @@ namespace cairocanvas
before we were depending on unmodified current point which I believed was preserved by save/restore */ before we were depending on unmodified current point which I believed was preserved by save/restore */
cairo_move_to( pCairo, 0, 0 ); cairo_move_to( pCairo, 0, 0 );
useFont( pCairo ); useFont( pCairo );
cairo_show_text( pCairo, aUTF8String ); cairo_show_text( pCairo, aUTF8String.getStr() );
cairo_restore( pCairo ); cairo_restore( pCairo );
return true; return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment