From: Vadim Zeitlin Date: Mon, 15 Apr 2002 18:47:34 +0000 (+0000) Subject: corrected passing const char * to a function taking char * (part of the patch 543892) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9a5ead1e457eb36d70b2bfa0aeb76539a1cf52b9 corrected passing const char * to a function taking char * (part of the patch 543892) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index 66009c3b70..17ab7782d6 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -1371,7 +1371,7 @@ static wxString gs_dirPath; wxString wxFindFirstFile(const wxChar *spec, int flags) { - gs_dirPath = wxPathOnly(spec); + wxSplitPath(spec, &gs_dirPath, NULL, NULL); if ( gs_dirPath.IsEmpty() ) gs_dirPath = wxT("."); if ( gs_dirPath.Last() != wxFILE_SEP_PATH )