Skip to content

Commit

Permalink
fix a couple of compiler warnings
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6436 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jan 16, 2007
1 parent 59bb6ed commit 5467f68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/legend/qgslegend.cpp
Expand Up @@ -1269,7 +1269,7 @@ QgsLegendLayer* QgsLegend::findLegendLayer(const QString& layerKey)
}
}
}
while(theItem = nextItem(theItem));
while((theItem = nextItem(theItem)));
return 0;
}

Expand Down Expand Up @@ -1763,7 +1763,7 @@ void QgsLegend::showLegendLayerFileGroups()
theFileGroup->setHidden(!mShowLegendLayerFiles);
}
}
while(theItem = nextItem(theItem));
while((theItem = nextItem(theItem)));
}

void QgsLegend::zoomToLayerExtent()
Expand Down

0 comments on commit 5467f68

Please sign in to comment.