X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f8855e47254a28f5141524b3aaaac03c2944e997..8466fc74fa494ee7b4dccf36f7d2c292e2efd5a8:/src/palmos/brush.cpp diff --git a/src/palmos/brush.cpp b/src/palmos/brush.cpp index 3df9bd8483..6018ae35b2 100644 --- a/src/palmos/brush.cpp +++ b/src/palmos/brush.cpp @@ -29,6 +29,7 @@ #include "wx/utils.h" #include "wx/app.h" #include "wx/brush.h" + #include "wx/colour.h" #endif // WX_PRECOMP // ---------------------------------------------------------------------------- @@ -70,12 +71,12 @@ bool wxBrush::operator==(const wxBrush& brush) const return false; } -wxObjectRefData *wxBrush::CreateRefData() const +wxGDIRefData *wxBrush::CreateGDIRefData() const { return NULL; } -wxObjectRefData *wxBrush::CloneRefData(const wxObjectRefData *data) const +wxGDIRefData *wxBrush::CloneGDIRefData(const wxGDIRefData *data) const { return NULL; } @@ -108,18 +109,18 @@ WXHANDLE wxBrush::GetResourceHandle() const // wxBrush setters // ---------------------------------------------------------------------------- -void wxBrush::SetColour(const wxColour& col) +void wxBrush::SetColour(const wxColour& WXUNUSED(col)) { } -void wxBrush::SetColour(unsigned char r, unsigned char g, unsigned char b) +void wxBrush::SetColour(unsigned char WXUNUSED(r), unsigned char WXUNUSED(g), unsigned char WXUNUSED(b)) { } -void wxBrush::SetStyle(int style) +void wxBrush::SetStyle(int WXUNUSED(style)) { } -void wxBrush::SetStipple(const wxBitmap& stipple) +void wxBrush::SetStipple(const wxBitmap& WXUNUSED(stipple)) { }