From: Mattia B. <mb...@ds...> - 2002-10-09 07:24:32
|
On Wed, 9 Oct 2002, Marcus wrote: >How do you call Wx::FontEnumerator? > >Would this be correct? >------------------- >use strict; >use Wx qw(:everything); > >my @fonts = Wx::FontEnumerator::GetFacenames(); >------------------- my $enum = Wx::FontEnumerator->new; my @fonts = $enum->GetFaceNames; >(PPM is broken, so I otherwise need to compile wxPerl myself which is a >hassle on this slow machine.) If you explain what is broken, it _may_ be possivle to fix it... Regards Mattia |