Skip to content

Commit

Permalink
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/core/vector/qgsvectorlayerprofilegenerator.cpp
Original file line number Diff line number Diff line change
@@ -238,7 +238,7 @@ void QgsVectorLayerProfileResults::renderResults( QgsProfileRenderContext &conte
case Qgis::VectorProfileType::ContinuousSurface:
QgsAbstractProfileSurfaceResults::renderResults( context );
if ( mShowMarkerSymbolInSurfacePlots )
renderMarkersOverContinousSurfacePlot( context );
renderMarkersOverContinuousSurfacePlot( context );
break;
}
}
@@ -410,7 +410,7 @@ void QgsVectorLayerProfileResults::renderResultsAsIndividualFeatures( QgsProfile
}
}

void QgsVectorLayerProfileResults::renderMarkersOverContinousSurfacePlot( QgsProfileRenderContext &context )
void QgsVectorLayerProfileResults::renderMarkersOverContinuousSurfacePlot( QgsProfileRenderContext &context )
{
QPainter *painter = context.renderContext().painter();
if ( !painter )
2 changes: 1 addition & 1 deletion src/core/vector/qgsvectorlayerprofilegenerator.h
Original file line number Diff line number Diff line change
@@ -80,7 +80,7 @@ class CORE_EXPORT QgsVectorLayerProfileResults : public QgsAbstractProfileSurfac

private:
void renderResultsAsIndividualFeatures( QgsProfileRenderContext &context );
void renderMarkersOverContinousSurfacePlot( QgsProfileRenderContext &context );
void renderMarkersOverContinuousSurfacePlot( QgsProfileRenderContext &context );
QgsProfileSnapResult snapPointToIndividualFeatures( const QgsProfilePoint &point, const QgsProfileSnapContext &context );

};

0 comments on commit 01057dc

Please sign in to comment.