]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/fontutil.cpp
compilation fix after wxBrushStyle changes (closes #9593)
[wxWidgets.git] / src / cocoa / fontutil.cpp
index 1a59d7e8e2393d7cff06beaf29e9d2d484f83103..b42c8ebb3f30bbc233f2261b853ba335e22429f6 100644 (file)
@@ -179,7 +179,7 @@ bool wxGetNativeFontEncoding(wxFontEncoding encoding,
 // private data
 // ----------------------------------------------------------------------------
 
-static wxHashTable *g_fontHash = (wxHashTable*) NULL;
+static wxHashTable *g_fontHash = NULL;
 
 // ----------------------------------------------------------------------------
 // private functions
@@ -251,7 +251,7 @@ void wxFontModule::OnExit()
 {
     delete g_fontHash;
 
-    g_fontHash = (wxHashTable *)NULL;
+    g_fontHash = NULL;
 }
 
 #endif