summaryrefslogtreecommitdiffstats
path: root/src/extension
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension')
-rw-r--r--src/extension/internal/pov-out.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/internal/pov-out.cpp b/src/extension/internal/pov-out.cpp
index 0f04c6a1a..6dd62206c 100644
--- a/src/extension/internal/pov-out.cpp
+++ b/src/extension/internal/pov-out.cpp
@@ -330,7 +330,7 @@ void PovOutput::doCurves(SPDocument *doc)
//Count the NR_CURVETOs/LINETOs
int segmentCount=0;
- NArtBpath *bp = SP_CURVE_BPATH(curve);
+ NArtBpath const *bp = SP_CURVE_BPATH(curve);
for (int curveNr=0 ; curveNr<curveLength ; curveNr++, bp++)
if (bp->code == NR_CURVETO || bp->code == NR_LINETO)
segmentCount++;