#else
#endif
*/
-#if defined(__WXPM__) || defined(__WXMAC__)
+#if defined(__WXMAC__) || defined(__WXPM__)
static const int sizeFont = 12;
wxNORMAL_FONT = new wxFont (sizeFont, wxMODERN, wxNORMAL, wxNORMAL);
#else
- wxNORMAL_FONT = new wxFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
+ wxNORMAL_FONT = new wxFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
static const int sizeFont = wxNORMAL_FONT->GetPointSize();
#endif
{
wxBrush *brush = (wxBrush *) node->Data ();
wxNode *next = node->Next ();
- if (brush->GetVisible())
+ if (brush && brush->GetVisible())
delete brush;
node = next;
}