X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce50c4d1c61de1b30c32923b35527a54c0c32751..83f0bdff313437b731b5b92b32b399192e00bd47:/src/cocoa/icon.cpp diff --git a/src/cocoa/icon.cpp b/src/cocoa/icon.cpp index be8e8dfbc3..f473c7b275 100644 --- a/src/cocoa/icon.cpp +++ b/src/cocoa/icon.cpp @@ -32,6 +32,10 @@ wxIcon::wxIcon(const char **xpm) { } +wxIcon::wxIcon(char **xpm) +{ +} + wxIcon::wxIcon(const char WXUNUSED(bits)[], int WXUNUSED(width), int WXUNUSED(height)) { } @@ -52,12 +56,7 @@ bool wxIcon::LoadFile(const wxString& filename, wxBitmapType type, { UnRef(); - wxBitmapHandler *handler = FindHandler(type); - - if ( handler ) - return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight); - else - return FALSE; + return FALSE; } void wxIcon::CopyFromBitmap(const wxBitmap& icno)