Build fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41194 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2006-09-13 16:16:37 +00:00
parent 8df950a694
commit 15495b2603

View File

@ -29,6 +29,7 @@
#include "wx/utils.h"
#include "wx/app.h"
#include "wx/brush.h"
#include "wx/colour.h"
#endif // WX_PRECOMP
// ----------------------------------------------------------------------------
@ -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))
{
}