X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f5590243955d800aaeee4e2c3b8c4aec14919181..0ba6faaeeeec36fe4e6fc376f2f5edc1c0d34334:/src/palmos/pen.cpp diff --git a/src/palmos/pen.cpp b/src/palmos/pen.cpp index af9311f7c2..4ed1a1abd1 100644 --- a/src/palmos/pen.cpp +++ b/src/palmos/pen.cpp @@ -80,10 +80,6 @@ bool wxPen::IsFree() const return false; } -void wxPen::Unshare() -{ -} - void wxPen::SetColour(const wxColour& col) { } @@ -115,3 +111,14 @@ void wxPen::SetJoin(int Join) void wxPen::SetCap(int Cap) { } + +wxGDIRefData *wxPen::CreateGDIRefData() const +{ + return new wxPenRefData(); +} + +wxGDIRefData *wxPen::CloneGDIRefData(const wxGDIRefData *data) const +{ + return new wxPenRefData(*wx_static_cast(const wxPenRefData *, data)); +} +