// Created: 2003/07/03
// RCS-ID: $Id$
// Copyright: (c) 2003 David Elliott
-// Licence: wxWindows licence
+// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
-#include "wx/setup.h"
-#include "wx/utils.h"
+#include "wx/wxprec.h"
+
#include "wx/brush.h"
-#include "wx/colour.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/utils.h"
+ #include "wx/colour.h"
+#endif //WX_PRECOMP
#import <AppKit/NSColor.h>
wxBrushRefData::wxBrushRefData(const wxColour& colour, int style)
{
m_cocoaNSColor = NULL;
- m_style = wxSOLID;
+ m_style = style;
m_colour = colour;
}
// Brushes
wxBrush::wxBrush()
{
- m_refData = new wxBrushRefData;
}
wxBrush::~wxBrush()
WX_NSColor wxBrush::GetNSColor()
{
- wxCHECK_MSG( Ok(), NULL, _T("invalid brush") );
+ if(!m_refData)
+ return [NSColor clearColor];
return M_BRUSHDATA->GetNSColor();
}
-