]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/gdicmn.cpp
Corrected wxDialog event table under wxMac and wxOS2 as per the other ports.
[wxWidgets.git] / src / common / gdicmn.cpp
index d33e03f7399b592ab79bb1216cde0c08b778c058..91cdb4ae8c989d0e2a79e5495d21895d5c44d4df 100644 (file)
@@ -446,7 +446,7 @@ void wxInitializeStockObjects ()
   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
 
@@ -623,7 +623,7 @@ wxBrushList::~wxBrushList ()
     {
       wxBrush *brush = (wxBrush *) node->Data ();
       wxNode *next = node->Next ();
-      if (brush->GetVisible())
+      if (brush && brush->GetVisible())
         delete brush;
       node = next;
     }