Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
It's a good habit to use initialize a variable before adding to it
git-svn-id: http://svn.osgeo.org/qgis/trunk@14872 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Dec 8, 2010
1 parent e0960e4 commit fd83d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgslinesymbollayerv2.cpp
Expand Up @@ -489,7 +489,7 @@ void QgsMarkerLineSymbolLayerV2::renderPolylineCentral( const QPolygonF& points,
// find the segment where the central point lies
it = points.constBegin();
last = *it;
qreal last_at = 0, next_at;
qreal last_at = 0, next_at = 0;
QPointF next;
int segment = 0;
for ( ++it; it != points.constEnd(); ++it )
Expand Down

0 comments on commit fd83d1a

Please sign in to comment.