]> git.saurik.com Git - wxWidgets.git/commitdiff
warning under gcc removed
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 22 Jul 1998 11:33:15 +0000 (11:33 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 22 Jul 1998 11:33:15 +0000 (11:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@320 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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();
       // 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
         // 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();
       // 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 )
         // is it our subgroup?
         for ( n = 0; (pNewLast == NULL) && (n < nEntries); n++ ) {
           if ( m_aEntries[n]->GetLine() == m_pLine )