X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/068993c7efdb9020c5752f29b62ed5090f4caac2..137c8bde085d6d5b7c459902d2ea1a198ab48765:/src/common/imagfill.cpp?ds=sidebyside diff --git a/src/common/imagfill.cpp b/src/common/imagfill.cpp index bfe5345247..89c1e5f784 100644 --- a/src/common/imagfill.cpp +++ b/src/common/imagfill.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: imagfill.cpp +// Name: src/common/imagfill.cpp // Purpose: FloodFill for wxImage // Author: Julian Smart // RCS-ID: $Id$ @@ -15,19 +15,17 @@ #pragma hdrstop #endif -#include "wx/defs.h" - #if wxUSE_IMAGE && !defined(__WXMSW__) // we have no use for this code in wxMSW... -#include "wx/image.h" - #ifndef WX_PRECOMP #include "wx/brush.h" #include "wx/dc.h" #include "wx/dcmemory.h" #endif +#include "wx/image.h" + // DoFloodFill // Fills with the colour extracted from fillBrush, starting at x,y until either // a color different from the start pixel is reached (wxFLOOD_SURFACE) @@ -62,7 +60,7 @@ static void LINKAGEMODE wxImageFloodFill(wxImage *image, wxCoord x, wxCoord y, const wxBrush & fillBrush, const wxColour& testColour, int style, - int LogicalFunction) + int WXUNUSED(LogicalFunction)) { /* A diamond flood-fill using a circular queue system. Each pixel surrounding the current pixel is added to @@ -309,4 +307,3 @@ bool wxDoFloodFill(wxDC *dc, wxCoord x, wxCoord y, } #endif // wxUSE_IMAGE -