fixed deleting entries at root level

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19847 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-03-28 15:25:50 +00:00
parent a2facb9415
commit 3362e80e71
2 changed files with 10 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ All:
- bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
- added wx/math.h (John Labenski)
- added Catalan translations (Pau Bosch i Crespo)
- fixed bug with deleting entries at root level in wxFileConfig
wxBase:

View File

@@ -565,8 +565,17 @@ void wxFileConfig::Parse(wxTextBuffer& buffer, bool bLocal)
// add the line to linked list
if ( bLocal )
{
LineListAppend(strLine);
// let the root group have it start line as well
if ( !n )
{
m_pCurrentGroup->SetLine(m_linesTail);
}
}
// skip leading spaces
for ( pStart = strLine; wxIsspace(*pStart); pStart++ )
;