IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap)
-wxIcon::wxIcon( const char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+wxIcon::wxIcon(const char* const* bits) :
wxBitmap( bits )
{
}
-wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+#ifdef wxNEEDS_CHARPP
+wxIcon::wxIcon(char **bits) :
wxBitmap( bits )
{
}
+#endif
wxIcon::wxIcon() : wxBitmap()
{