]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fileconf.cpp
unicode and __MACH__ additions for wxMac
[wxWidgets.git] / src / common / fileconf.cpp
index 44a683f4070035393ca92a2b72c1a2f39b0da4c8..dfb2a735f821cd1f47d37d70f43b5e00e602d702 100644 (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++ )
       ;