-wxIcon::wxIcon()
-{
-}
-
-// Create from XBM data
-wxIcon::wxIcon(const char bits[], int width, int height)
-{
- (void) Create((void*) bits, wxBITMAP_TYPE_XBM_DATA, width, height, 1);
-}
-
-// Create from XPM data
-wxIcon::wxIcon(char **data)
-{
- (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
-}
-
-wxIcon::wxIcon(const char **data)
-{
- (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
-}