X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a756f210019dd5b51331b7181c816d3882146a30..571d2e0f232be3f7220c485c7e72eccfb87f2855:/src/common/effects.cpp?ds=sidebyside diff --git a/src/common/effects.cpp b/src/common/effects.cpp index a5b2a828ea..a70f7032e2 100644 --- a/src/common/effects.cpp +++ b/src/common/effects.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: effects.cpp +// Name: src/common/effects.cpp // Purpose: wxEffects implementation // Author: Julian Smart // Modified by: @@ -9,23 +9,22 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "effects.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif -#include "wx/gdicmn.h" -#include "wx/pen.h" -#include "wx/dcmemory.h" -#include "wx/settings.h" #include "wx/effects.h" +#ifndef WX_PRECOMP + #include "wx/dcmemory.h" + #include "wx/pen.h" + #include "wx/settings.h" + #include "wx/gdicmn.h" +#endif //WX_PRECOMP + /* * wxEffects: various 3D effects */ @@ -87,7 +86,7 @@ void wxEffects::DrawSunkenEdge(wxDC& dc, const wxRect& rect, int WXUNUSED(border dc.SetPen(wxNullPen); } -bool wxEffects::TileBitmap(const wxRect& rect, wxDC& dc, wxBitmap& bitmap) +bool wxEffects::TileBitmap(const wxRect& rect, wxDC& dc, const wxBitmap& bitmap) { static bool hiColour = (wxDisplayDepth() >= 16) ; @@ -122,5 +121,5 @@ bool wxEffects::TileBitmap(const wxRect& rect, wxDC& dc, wxBitmap& bitmap) } #endif // wxUSE_PALETTE - return TRUE; + return true; }