]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imagpng.cpp
fix memory leak in wxScreenDC, fixes #13249
[wxWidgets.git] / src / common / imagpng.cpp
index 5b151d568d7d9ea540859bd33c2733df8e625b5e..578d0baf6dd37b01c5f4ddaaa2e4515fe69581a2 100644 (file)
@@ -558,7 +558,7 @@ wxPNGHandler::LoadFile(wxImage *image,
 
     image->Create((int)width, (int)height, (bool) false /* no need to init pixels */);
 
-    if (!image->Ok())
+    if (!image->IsOk())
         goto error;
 
     // initialize all line pointers to NULL to ensure that they can be safely
@@ -660,7 +660,7 @@ error:
        wxLogError(_("Couldn't load a PNG image - file is corrupted or not enough memory."));
     }
 
-    if ( image->Ok() )
+    if ( image->IsOk() )
     {
         image->Destroy();
     }