Code cleaning: wxID_ANY, wxDefaultSize, wxDefaultPosition, true, false, wxEmptyString, tabs and white spaces.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -122,14 +122,14 @@ bool wxPalette::Create(int n,
|
||||
e->blue = blue[i];
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
return true;
|
||||
}
|
||||
|
||||
int wxPalette::GetPixel( const unsigned char red,
|
||||
const unsigned char green,
|
||||
const unsigned char blue ) const
|
||||
{
|
||||
if (!m_refData) return FALSE;
|
||||
if (!m_refData) return false;
|
||||
|
||||
int closest = 0;
|
||||
double d,distance = 1000.0; // max. dist is 256
|
||||
@@ -152,14 +152,14 @@ bool wxPalette::GetRGB(int pixel,
|
||||
unsigned char *green,
|
||||
unsigned char *blue) const
|
||||
{
|
||||
if (!m_refData) return FALSE;
|
||||
if (pixel >= M_PALETTEDATA->m_count) return FALSE;
|
||||
if (!m_refData) return false;
|
||||
if (pixel >= M_PALETTEDATA->m_count) return false;
|
||||
|
||||
wxPaletteEntry& p = M_PALETTEDATA->m_entries[pixel];
|
||||
if (red) *red = p.red;
|
||||
if (green) *green = p.green;
|
||||
if (blue) *blue = p.blue;
|
||||
return TRUE;
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif // wxUSE_PALETTE
|
||||
|
Reference in New Issue
Block a user