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:
@@ -23,6 +23,7 @@ All:
|
|||||||
- bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
|
- bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
|
||||||
- added wx/math.h (John Labenski)
|
- added wx/math.h (John Labenski)
|
||||||
- added Catalan translations (Pau Bosch i Crespo)
|
- added Catalan translations (Pau Bosch i Crespo)
|
||||||
|
- fixed bug with deleting entries at root level in wxFileConfig
|
||||||
|
|
||||||
wxBase:
|
wxBase:
|
||||||
|
|
||||||
|
@@ -565,8 +565,17 @@ void wxFileConfig::Parse(wxTextBuffer& buffer, bool bLocal)
|
|||||||
|
|
||||||
// add the line to linked list
|
// add the line to linked list
|
||||||
if ( bLocal )
|
if ( bLocal )
|
||||||
|
{
|
||||||
LineListAppend(strLine);
|
LineListAppend(strLine);
|
||||||
|
|
||||||
|
// let the root group have it start line as well
|
||||||
|
if ( !n )
|
||||||
|
{
|
||||||
|
m_pCurrentGroup->SetLine(m_linesTail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// skip leading spaces
|
// skip leading spaces
|
||||||
for ( pStart = strLine; wxIsspace(*pStart); pStart++ )
|
for ( pStart = strLine; wxIsspace(*pStart); pStart++ )
|
||||||
;
|
;
|
||||||
|
Reference in New Issue
Block a user