]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/brush.mm
Added wxToggleBitmapButton (it compiles).
[wxWidgets.git] / src / cocoa / brush.mm
index 753c947cea5a40372dd70e12e10c1eed8d6324a3..c58fd7604bb4abd2fad825f8346ab94106129ad0 100644 (file)
@@ -9,9 +9,11 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/setup.h"
-#include "wx/utils.h"
-#include "wx/brush.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/utils.h"
+    #include "wx/brush.h"
+#endif //WX_PRECOMP
 #include "wx/colour.h"
 
 #import <AppKit/NSColor.h>
@@ -139,7 +141,6 @@ WX_NSColor wxBrushRefData::GetNSColor()
 // Brushes
 wxBrush::wxBrush()
 {
-    m_refData = new wxBrushRefData;
 }
 
 wxBrush::~wxBrush()
@@ -210,7 +211,8 @@ wxBitmap *wxBrush::GetStipple() const
 
 WX_NSColor wxBrush::GetNSColor()
 {
-    wxCHECK_MSG( Ok(), NULL, _T("invalid brush") );
+    if(!m_refData)
+        return [NSColor clearColor];
     return M_BRUSHDATA->GetNSColor();
 }