X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b1d1dc510df81a53b23f351b89c6d8624a0da5e3..d21d2e5adf7a5acf3b496a9c4e87eab220bd75d8:/src/gtk1/font.cpp diff --git a/src/gtk1/font.cpp b/src/gtk1/font.cpp index c8a4c8da16..74864d1882 100644 --- a/src/gtk1/font.cpp +++ b/src/gtk1/font.cpp @@ -162,18 +162,18 @@ bool wxNativeFontInfo::FromString(const wxString& s) 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; } @@ -185,8 +185,6 @@ IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject) void wxFont::Init() { - if (wxTheFontList) - wxTheFontList->Append( this ); } wxFont::wxFont(const wxNativeFontInfo& info) @@ -334,8 +332,6 @@ void wxFont::Unshare() wxFont::~wxFont() { - if (wxTheFontList) - wxTheFontList->DeleteObject( this ); } // ----------------------------------------------------------------------------