]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/icon.cpp
Moved @interface wxNSApplicationDelegate to new header
[wxWidgets.git] / src / cocoa / icon.cpp
index be8e8dfbc3a05db05b17156bea49332d1446bc7c..f473c7b275abdab31a623c40b198f1418dfd8193 100644 (file)
@@ -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)