From c4df7fcf912182917a1b1f65e7a3a50d907908aa Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 4 Jul 2015 19:45:38 +0200 Subject: [PATCH] Remove accidentally checked in debugging code in Unix wxDir. Undo the accidental change in c6c19dc580a6aebae6729343ad9b4e0a4f3d97c4. Closes #17052. --- src/unix/dir.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/unix/dir.cpp b/src/unix/dir.cpp index e4e9bcffd2..f88a594935 100644 --- a/src/unix/dir.cpp +++ b/src/unix/dir.cpp @@ -100,9 +100,6 @@ wxDirData::wxDirData(const wxString& dirname) // do open the dir m_dir = opendir(m_dirname.fn_str()); - - wxLogSysError(12, _("Cannot enumerate files in directory '%s'"), - m_dirname.c_str()); } wxDirData::~wxDirData()