From: Václav Slavík Date: Sun, 6 Jan 2002 23:11:52 +0000 (+0000) Subject: hasSubDirs already defined in dircmn X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0cd5da34b2a1f18ad3726f8c49bac58ae0a9b110 hasSubDirs already defined in dircmn git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13425 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mgl/dir.cpp b/src/mgl/dir.cpp index b325114f1c..c290d3f89a 100644 --- a/src/mgl/dir.cpp +++ b/src/mgl/dir.cpp @@ -261,12 +261,3 @@ bool wxDir::GetNext(wxString *filename) const return M_DIR->Read(filename); } -bool wxDir::HasSubDirs(const wxString& spec) -{ - wxCHECK_MSG( IsOpened(), FALSE, _T("must wxDir::Open() first") ); - - // just try to find first directory - wxString s; - return GetFirst(&s, spec, wxDIR_DIRS | wxDIR_HIDDEN); -} -