corrected warnings when compiling with -Wall -W
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -31,24 +31,23 @@ wxIcon::wxIcon()
|
||||
}
|
||||
|
||||
wxIcon::wxIcon(const char bits[], int width, int height) :
|
||||
wxBitmap(bits,width,height )
|
||||
wxBitmap(bits, width, height)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
wxIcon::wxIcon( const char **bits ) :
|
||||
wxBitmap(bits )
|
||||
wxBitmap(bits)
|
||||
{
|
||||
}
|
||||
|
||||
wxIcon::wxIcon( char **bits ) :
|
||||
wxBitmap(bits )
|
||||
wxBitmap(bits)
|
||||
{
|
||||
}
|
||||
|
||||
wxIcon::wxIcon(const wxString& icon_file, int flags,
|
||||
int desiredWidth, int desiredHeight)
|
||||
|
||||
{
|
||||
LoadFile(icon_file, (wxBitmapType) flags, desiredWidth, desiredHeight);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user