]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/image.cpp
add IsOk() to all classes having Ok() method (patch 1570985)
[wxWidgets.git] / src / common / image.cpp
index 97f42c347e1d30e607a03bf6fa2dd1ad80db00ab..4c0464d3cb71641485f3506a40c3e01b1bd619d4 100644 (file)
@@ -1544,7 +1544,7 @@ unsigned char wxImage::GetBlue( int x, int y ) const
     return M_IMGDATA->m_data[pos+2];
 }
 
-bool wxImage::Ok() const
+bool wxImage::IsOk() const
 {
     // image of 0 width or height can't be considered ok - at least because it
     // causes crashes in ConvertToBitmap() if we don't catch it in time