]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/xpmdecod.cpp
fixing modal dialog quit after nested message box problem
[wxWidgets.git] / src / common / xpmdecod.cpp
index 54e54c5221e5aeabe90011754f6e19d01793b815..82a415f69624fe8f7d7efe9663860b40d6afbc9b 100644 (file)
@@ -122,9 +122,6 @@ bool wxXPMDecoder::CanRead(wxInputStream& stream)
     if ( !stream.Read(buf, WXSIZEOF(buf)) )
         return false;
 
-    if (stream.SeekI(-(wxFileOffset)WXSIZEOF(buf), wxFromCurrent) == wxInvalidOffset)
-        return false;
-
     return memcmp(buf, "/* XPM */", WXSIZEOF(buf)) == 0;
 }