Skip to content

Commit

Permalink
fix a iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
minorua committed Jun 15, 2013
1 parent fec833f commit 964d7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgsgraduatedsymbolrendererv2.cpp
Expand Up @@ -976,7 +976,7 @@ QDomElement QgsGraduatedSymbolRendererV2::save( QDomDocument& doc )
QgsSymbolV2Map symbols;
QDomElement rangesElem = doc.createElement( "ranges" );
QgsRangeList::const_iterator it = mRanges.constBegin();
for ( ; it != mRanges.end(); it++ )
for ( ; it != mRanges.constEnd(); it++ )
{
const QgsRendererRangeV2& range = *it;
QString symbolName = QString::number( i );
Expand Down

0 comments on commit 964d7b4

Please sign in to comment.