xFontName = tokenizer.GetNextToken();
if(!xFontName)
return FALSE;
-
+
return TRUE;
}
wxString wxNativeFontInfo::ToString() const
{
wxString s;
-
+
s.Printf(_T("%d;%s"),
0, // version
xFontName.c_str());
-
+
return s;
}
void wxFont::Init()
{
- if (wxTheFontList)
- wxTheFontList->Append( this );
}
wxFont::wxFont(const wxNativeFontInfo& info)
wxFont::~wxFont()
{
- if (wxTheFontList)
- wxTheFontList->DeleteObject( this );
}
// ----------------------------------------------------------------------------