]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/filectrlg.cpp
Fix typos in IMediaPlayer2 and INSPlay interfaces declarations.
[wxWidgets.git] / src / generic / filectrlg.cpp
index 172eda6d2f92734a8be3fa895f7b4503d917176e..3ab54d312b3a5517569b20c05ea055a6c0a0c2ee 100644 (file)
@@ -226,13 +226,7 @@ void wxFileData::ReadData()
     lstat( m_filePath.fn_str(), &buff );
     m_type |= S_ISLNK(buff.st_mode) ? is_link : 0;
 #else // no lstat()
-    // only translate to file charset if we don't go by our
-    // wxStat implementation
-#ifndef wxNEED_WX_UNISTD_H
-    wxStat( m_filePath.fn_str() , &buff );
-#else
     wxStat( m_filePath, &buff );
-#endif
 #endif
 
     m_type |= (buff.st_mode & S_IFDIR) != 0 ? is_dir : 0;