X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a24aff654fb10971e82abccc1b56217d556d447b..243f5c2d917b77474b6d159fc338ec669d70cc91:/src/cocoa/icon.cpp?ds=sidebyside diff --git a/src/cocoa/icon.cpp b/src/cocoa/icon.cpp index 26a7c1b1eb..f473c7b275 100644 --- a/src/cocoa/icon.cpp +++ b/src/cocoa/icon.cpp @@ -28,6 +28,14 @@ wxIcon::wxIcon() { } +wxIcon::wxIcon(const char **xpm) +{ +} + +wxIcon::wxIcon(char **xpm) +{ +} + wxIcon::wxIcon(const char WXUNUSED(bits)[], int WXUNUSED(width), int WXUNUSED(height)) { } @@ -48,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)