wxFont::wxFont( const wxFont& font )
{
Ref( font );
+
+ if (wxTheFontList) wxTheFontList->Append( this );
}
wxFont::wxFont( const wxFont* font )
{
UnRef();
if (font) Ref( *font );
+
+ if (wxTheFontList) wxTheFontList->Append( this );
}
wxFont::~wxFont(void)