Skip to content

Commit 3390f23

Browse files
committedJul 10, 2015
fix typo
1 parent df2d00c commit 3390f23

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎src/core/qgspallabeling.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1733,15 +1733,15 @@ void QgsPalLayerSettings::registerFeature( QgsFeature& f, const QgsRenderContext
17331733

17341734
const GEOSGeometry* geos_geom = 0;
17351735
const QgsGeometry* preparedGeom = geom;
1736-
QScopedPointer<QgsGeometry> scpoedPreparedGeom;
1736+
QScopedPointer<QgsGeometry> scopedPreparedGeom;
17371737

17381738
if ( QgsPalLabeling::geometryRequiresPreparation( geom, context, ct, doClip ? extentGeom : 0 ) )
17391739
{
1740-
scpoedPreparedGeom.reset( QgsPalLabeling::prepareGeometry( geom, context, ct, doClip ? extentGeom : 0 ) );
1741-
if ( !scpoedPreparedGeom.data() )
1740+
scopedPreparedGeom.reset( QgsPalLabeling::prepareGeometry( geom, context, ct, doClip ? extentGeom : 0 ) );
1741+
if ( !scopedPreparedGeom.data() )
17421742
return;
1743-
preparedGeom = scpoedPreparedGeom.data();
1744-
geos_geom = scpoedPreparedGeom.data()->asGeos();
1743+
preparedGeom = scopedPreparedGeom.data();
1744+
geos_geom = scopedPreparedGeom.data()->asGeos();
17451745
}
17461746
else
17471747
{

0 commit comments

Comments
 (0)
Please sign in to comment.