Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #660 from minorua/grad_it
fix a iteration
  • Loading branch information
m-kuhn committed Jun 15, 2013
2 parents fec833f + 964d7b4 commit e27fe3b
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 e27fe3b

Please sign in to comment.