X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4d94751752c081c289a1d8f159405487dbbe4e68..9e3e08210272082c5fcd427d14ebde86f60002a0:/include/wx/msw/pen.h diff --git a/include/wx/msw/pen.h b/include/wx/msw/pen.h index 4933932078..d30a10ff83 100644 --- a/include/wx/msw/pen.h +++ b/include/wx/msw/pen.h @@ -17,6 +17,7 @@ #endif #include "wx/gdiobj.h" +#include "wx/bitmap.h" typedef WXDWORD wxDash ; @@ -53,7 +54,6 @@ public: wxPen(const wxColour& col, int width, int style); wxPen(const wxBitmap& stipple, int width); inline wxPen(const wxPen& pen) { Ref(pen); } - inline wxPen(const wxPen* pen) { if (pen) Ref(*pen); } ~wxPen(); inline wxPen& operator = (const wxPen& pen) { if (*this == pen) return (*this); Ref(pen); return *this; } @@ -79,10 +79,10 @@ public: inline int GetJoin() const { return (M_PENDATA ? M_PENDATA->m_join : 0); }; inline int GetCap() const { return (M_PENDATA ? M_PENDATA->m_cap : 0); }; inline int GetDashes(wxDash **ptr) const { - *ptr = (M_PENDATA ? M_PENDATA->m_dash : NULL); return (M_PENDATA ? M_PENDATA->m_nbDash : 0); + *ptr = (M_PENDATA ? M_PENDATA->m_dash : (wxDash*) NULL); return (M_PENDATA ? M_PENDATA->m_nbDash : 0); } - inline wxBitmap *GetStipple() const { return (M_PENDATA ? (& M_PENDATA->m_stipple) : NULL); }; + inline wxBitmap *GetStipple() const { return (M_PENDATA ? (& M_PENDATA->m_stipple) : (wxBitmap*) NULL); }; // Internal bool RealizeResource();