X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad81651f00edc6f489d9b6a0839d316a964fd521..e04487ebe8375d5dae8f61800569fbbb94d2139a:/src/mac/pen.cpp diff --git a/src/mac/pen.cpp b/src/mac/pen.cpp index 2502b392fb..732889b467 100644 --- a/src/mac/pen.cpp +++ b/src/mac/pen.cpp @@ -17,7 +17,9 @@ #include "wx/utils.h" #include "wx/pen.h" +#if !USE_SHARED_LIBRARIES IMPLEMENT_DYNAMIC_CLASS(wxPen, wxGDIObject) +#endif wxPenRefData::wxPenRefData() { @@ -27,9 +29,6 @@ wxPenRefData::wxPenRefData() m_cap = wxCAP_ROUND ; m_nbDash = 0 ; m_dash = 0 ; -/* TODO: null data - m_hPen = 0; -*/ } wxPenRefData::wxPenRefData(const wxPenRefData& data) @@ -41,28 +40,20 @@ wxPenRefData::wxPenRefData(const wxPenRefData& data) m_nbDash = data.m_nbDash; m_dash = data.m_dash; m_colour = data.m_colour; -/* TODO: null data - m_hPen = 0; -*/ } wxPenRefData::~wxPenRefData() { - // TODO: delete data } // Pens wxPen::wxPen() { - if ( wxThePenList ) - wxThePenList->AddPen(this); } wxPen::~wxPen() { - if (wxThePenList) - wxThePenList->RemovePen(this); } // Should implement Create @@ -79,9 +70,6 @@ wxPen::wxPen(const wxColour& col, int Width, int Style) M_PENDATA->m_dash = 0 ; RealizeResource(); - - if ( wxThePenList ) - wxThePenList->AddPen(this); } wxPen::wxPen(const wxBitmap& stipple, int Width) @@ -97,9 +85,6 @@ wxPen::wxPen(const wxBitmap& stipple, int Width) M_PENDATA->m_dash = 0 ; RealizeResource(); - - if ( wxThePenList ) - wxThePenList->AddPen(this); } void wxPen::Unshare() @@ -193,8 +178,8 @@ void wxPen::SetCap(int Cap) bool wxPen::RealizeResource() { - // TODO: create actual pen - return FALSE; + // nothing to do here for mac + return TRUE; }