Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix compile error introduced with r9097
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9099 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Aug 20, 2008
1 parent e1a4d10 commit 1a71547
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/core/qgsvectorlayer.cpp
Expand Up @@ -714,13 +714,12 @@ bool QgsVectorLayer::draw(QgsRenderContext& renderContext)
updateFeatureCount();
int totalFeatures = pendingFeatureCount();
int featureCount = 0;
QgsFeature fet;
QgsAttributeList attributes = mRenderer->classificationAttributes();
select(attributes, renderContext.extent());

try
{
QgsFeature fet;
QgsAttributeList attributes = mRenderer->classificationAttributes();
select(attributes, renderContext.extent());

while( getNextFeature(fet) )
{

Expand Down

0 comments on commit 1a71547

Please sign in to comment.