fixed bug in handling quoted characters in value names
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -468,6 +468,7 @@ void wxFileConfig::Parse(wxTextFile& file, bool bLocal)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else { // a key
|
else { // a key
|
||||||
|
size_t count = 0;
|
||||||
const wxChar *pEnd = pStart;
|
const wxChar *pEnd = pStart;
|
||||||
while ( *pEnd != wxT('=') && !wxIsspace(*pEnd) ) {
|
while ( *pEnd != wxT('=') && !wxIsspace(*pEnd) ) {
|
||||||
if ( *pEnd == wxT('\\') ) {
|
if ( *pEnd == wxT('\\') ) {
|
||||||
@@ -476,10 +477,11 @@ void wxFileConfig::Parse(wxTextFile& file, bool bLocal)
|
|||||||
pEnd++;
|
pEnd++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
count++;
|
||||||
pEnd++;
|
pEnd++;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxString strKey(FilterInEntryName(wxString(pStart, pEnd)));
|
wxString strKey(FilterInEntryName(wxString(pStart, count)));
|
||||||
|
|
||||||
// skip whitespace
|
// skip whitespace
|
||||||
while ( isspace(*pEnd) )
|
while ( isspace(*pEnd) )
|
||||||
|
Reference in New Issue
Block a user