]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fileconf.cpp
* Deleted #include "wx/bufstrm.h"
[wxWidgets.git] / src / common / fileconf.cpp
index d0c6ac80627c6a7c59dc2a1b5ab5039242fdec55..5ae5d75b8ae165cbf2eec1564f720ceceecfbebe 100644 (file)
@@ -982,7 +982,8 @@ bool wxFileConfig::ConfigGroup::DeleteSubgroup(const char *szName)
       // go back until we find a subgroup or reach the group's line
       ConfigGroup *pNewLast = NULL;
       uint n, nSubgroups = m_aSubgroups.Count();
-      for ( LineList *pl = pLine->Prev(); pl != m_pLine; pl = pl->Prev() ) {
+      LineList *pl;
+      for ( pl = pLine->Prev(); pl != m_pLine; pl = pl->Prev() ) {
         // is it our subgroup?
         for ( n = 0; (pNewLast == NULL) && (n < nSubgroups); n++ ) {
           // do _not_ call GetGroupLine! we don't want to add it to the local
@@ -1032,7 +1033,8 @@ bool wxFileConfig::ConfigGroup::DeleteEntry(const char *szName)
       // go back until we find another entry or reach the group's line
       ConfigEntry *pNewLast = NULL;
       uint n, nEntries = m_aEntries.Count();
-      for ( LineList *pl = pLine->Prev(); pl != m_pLine; pl = pl->Prev() ) {
+      LineList *pl;
+      for ( pl = pLine->Prev(); pl != m_pLine; pl = pl->Prev() ) {
         // is it our subgroup?
         for ( n = 0; (pNewLast == NULL) && (n < nEntries); n++ ) {
           if ( m_aEntries[n]->GetLine() == m_pLine )