X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fbfb8bcc3fa17e079d4219655b173f8ed2ccc65a..04bf2fb51514e3ec8631a1d8ea1f610fca851005:/src/generic/paletteg.cpp diff --git a/src/generic/paletteg.cpp b/src/generic/paletteg.cpp index bc60473143..24900fc538 100644 --- a/src/generic/paletteg.cpp +++ b/src/generic/paletteg.cpp @@ -3,7 +3,7 @@ // Purpose: // Author: Robert Roebling // Created: 01/02/97 -// Id: +// RCS-ID: $Id$ // Copyright: (c) 1998 Robert Roebling and Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -120,11 +120,11 @@ bool wxPalette::Create(int n, return true; } -int wxPalette::GetPixel( const unsigned char red, - const unsigned char green, - const unsigned char blue ) const +int wxPalette::GetPixel( unsigned char red, + unsigned char green, + unsigned char blue ) const { - if (!m_refData) return false; + if (!m_refData) return wxNOT_FOUND; int closest = 0; double d,distance = 1000.0; // max. dist is 256 @@ -158,5 +158,3 @@ bool wxPalette::GetRGB(int pixel, } #endif // wxUSE_PALETTE - -