unused parameter warnings suppressed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3703 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -51,7 +51,8 @@ wxMask::~wxMask()
|
|||||||
if (m_bitmap) gdk_bitmap_unref( m_bitmap );
|
if (m_bitmap) gdk_bitmap_unref( m_bitmap );
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxMask::Create( const wxBitmap& bitmap, const wxColour& colour )
|
bool wxMask::Create( const wxBitmap& WXUNUSED(bitmap),
|
||||||
|
const wxColour& WXUNUSED(colour) )
|
||||||
{
|
{
|
||||||
if (m_bitmap)
|
if (m_bitmap)
|
||||||
{
|
{
|
||||||
@@ -64,7 +65,8 @@ bool wxMask::Create( const wxBitmap& bitmap, const wxColour& colour )
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxMask::Create( const wxBitmap& WXUNUSED(bitmap), int WXUNUSED(paletteIndex) )
|
bool wxMask::Create( const wxBitmap& WXUNUSED(bitmap),
|
||||||
|
int WXUNUSED(paletteIndex) )
|
||||||
{
|
{
|
||||||
if (m_bitmap)
|
if (m_bitmap)
|
||||||
{
|
{
|
||||||
|
@@ -418,7 +418,7 @@ GdkFont *wxFont::GetInternalFont( float scale ) const
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
static GdkFont*wxLoadQueryFont( int pointSize, int family, int style, int weight,
|
static GdkFont*wxLoadQueryFont( int pointSize, int family, int style, int weight,
|
||||||
bool underlined, const wxString &facename )
|
bool WXUNUSED(underlined), const wxString &facename )
|
||||||
{
|
{
|
||||||
wxChar *xfamily = (wxChar*) NULL;
|
wxChar *xfamily = (wxChar*) NULL;
|
||||||
wxChar *xstyle = (wxChar*) NULL;
|
wxChar *xstyle = (wxChar*) NULL;
|
||||||
|
@@ -51,7 +51,8 @@ wxMask::~wxMask()
|
|||||||
if (m_bitmap) gdk_bitmap_unref( m_bitmap );
|
if (m_bitmap) gdk_bitmap_unref( m_bitmap );
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxMask::Create( const wxBitmap& bitmap, const wxColour& colour )
|
bool wxMask::Create( const wxBitmap& WXUNUSED(bitmap),
|
||||||
|
const wxColour& WXUNUSED(colour) )
|
||||||
{
|
{
|
||||||
if (m_bitmap)
|
if (m_bitmap)
|
||||||
{
|
{
|
||||||
@@ -64,7 +65,8 @@ bool wxMask::Create( const wxBitmap& bitmap, const wxColour& colour )
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxMask::Create( const wxBitmap& WXUNUSED(bitmap), int WXUNUSED(paletteIndex) )
|
bool wxMask::Create( const wxBitmap& WXUNUSED(bitmap),
|
||||||
|
int WXUNUSED(paletteIndex) )
|
||||||
{
|
{
|
||||||
if (m_bitmap)
|
if (m_bitmap)
|
||||||
{
|
{
|
||||||
|
@@ -418,7 +418,7 @@ GdkFont *wxFont::GetInternalFont( float scale ) const
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
static GdkFont*wxLoadQueryFont( int pointSize, int family, int style, int weight,
|
static GdkFont*wxLoadQueryFont( int pointSize, int family, int style, int weight,
|
||||||
bool underlined, const wxString &facename )
|
bool WXUNUSED(underlined), const wxString &facename )
|
||||||
{
|
{
|
||||||
wxChar *xfamily = (wxChar*) NULL;
|
wxChar *xfamily = (wxChar*) NULL;
|
||||||
wxChar *xstyle = (wxChar*) NULL;
|
wxChar *xstyle = (wxChar*) NULL;
|
||||||
|
Reference in New Issue
Block a user