AthensCairoText substitute needed for Roassal3 SVG

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

AthensCairoText substitute needed for Roassal3 SVG

Squeak - Dev mailing list
Hi Folks,

in RSSVGExamples example02Miku  there is this tidbit:
utf8String ifNil: [
act := AthensCairoText new.
utf8String := act convertTextUtf8: label text.
label path: utf8String.
].
In pharo, the AthensCairoText comment reads:

Class: AthensCairoText
                                                                                                   

do not use this class. this is subject of change or removal

The class looks like it wraps FFI calls, so we don't want it anyway...

suggestions on what to replace it with?

thanks in advance .