]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/brush.cpp
Changed order of #ifdefs to get native version on OS/2, even if
[wxWidgets.git] / src / mac / brush.cpp
index 4f28e92f53475598e8fb475fd7b1a0d387d7e90d..7ba6dfc99063c4114ad0a246184f4c896fb2c394 100644 (file)
 #include "wx/utils.h"
 #include "wx/brush.h"
 
-#if !USE_SHARED_LIBRARIES
 IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject)
-#endif
 
 wxBrushRefData::wxBrushRefData()
 {
     m_style = wxSOLID;
-// TODO: null data
 }
 
 wxBrushRefData::wxBrushRefData(const wxBrushRefData& data)
@@ -32,14 +29,10 @@ wxBrushRefData::wxBrushRefData(const wxBrushRefData& data)
   m_style = data.m_style;
   m_stipple = data.m_stipple;
   m_colour = data.m_colour;
-/* TODO: null data
-  m_hBrush = 0;
-*/
 }
 
 wxBrushRefData::~wxBrushRefData()
 {
-// TODO: delete data
 }
 
 // Brushes
@@ -134,7 +127,6 @@ void wxBrush::SetStipple(const wxBitmap& Stipple)
 
 bool wxBrush::RealizeResource()
 {
-// TODO: create the brush
-    return FALSE;
+    return TRUE;
 }