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 );
}
// ----------------------------------------------------------------------------
}
gtk_widget_destroy( widget );
}
+ else
+ {
+ // already have it, but ref it once more before returning
+ gdk_font_ref(g_systemDefaultGuiFont);
+ }
+
return g_systemDefaultGuiFont;
}