From 5513d18ba7e0b90b31f993bceb875984c1542cac Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 20 Nov 2008 18:12:43 +0000 Subject: [PATCH] don't log an error if the directory can't be opened at all for compatibility with MSW (#10194) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/dir.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/unix/dir.cpp b/src/unix/dir.cpp index 16f0b36503..291702bfa3 100644 --- a/src/unix/dir.cpp +++ b/src/unix/dir.cpp @@ -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; -- 2.50.0