]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/dir.cpp
Fixed and refactored wxPropertyGridManager decsription text box painting
[wxWidgets.git] / src / unix / dir.cpp
index 16f0b365032ae0528cefe4eb4c83f8c384f0de03..2581eb1cb9772b6e242847642f5b8eb522cfc78d 100644 (file)
@@ -115,7 +115,7 @@ wxDirData::~wxDirData()
 
 bool wxDirData::Read(wxString *filename)
 {
-    dirent *de = (dirent *)NULL;    // just to silence compiler warnings
+    dirent *de = NULL;    // just to silence compiler warnings
     bool matches = false;
 
     // speed up string concatenation in the loop a bit
@@ -225,9 +225,6 @@ bool wxDir::Open(const wxString& dirname)
 
     if ( !M_DIR->IsOk() )
     {
-        wxLogSysError(_("Can not enumerate files in directory '%s'"),
-                      dirname.c_str());
-
         delete M_DIR;
         m_data = NULL;