From 487d976143f640b5b5c80c9e5187a93dff6e4e93 Mon Sep 17 00:00:00 2001 From: Ove Kaaven Date: Fri, 7 Apr 2000 23:58:43 +0000 Subject: [PATCH] Seems to have forgotten to commit this small isspace => wxIsspace change earlier... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7080 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/fileconf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/fileconf.cpp b/src/common/fileconf.cpp index 0a4e98d4c0..2f8bde4ad6 100644 --- a/src/common/fileconf.cpp +++ b/src/common/fileconf.cpp @@ -485,7 +485,7 @@ void wxFileConfig::Parse(wxTextFile& file, bool bLocal) wxString strKey(FilterInEntryName(wxString(pStart, pEnd))); // skip whitespace - while ( isspace(*pEnd) ) + while ( wxIsspace(*pEnd) ) pEnd++; if ( *pEnd++ != wxT('=') ) {