]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imagiff.cpp
fixing osx_carbon
[wxWidgets.git] / src / common / imagiff.cpp
index 16e0348a547729901e61878e14e303f966d39472..f71aaf3f7bc33885204c46f8dd141dc7665de5e8 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        src/common/imagiff.h
+// Name:        src/common/imagiff.cpp
 // Purpose:     wxImage handler for Amiga IFF images
 // Author:      Steffen Gutmann, Thomas Meyer
 // RCS-ID:      $Id$
@@ -140,7 +140,7 @@ bool wxIFFDecoder::ConvertToImage(wxImage *image) const
     // create the image
     image->Create(GetWidth(), GetHeight());
 
-    if (!image->Ok())
+    if (!image->IsOk())
         return false;
 
     unsigned char *pal = GetPalette();