From 4d1ee85993511c4642db2e3278f269222eba6e13 Mon Sep 17 00:00:00 2001 From: Fridrich Štrba Date: Thu, 7 Jul 2011 21:41:17 +0200 Subject: Fix warnings --- src/lib/VSDXContentCollector.cpp | 4 ++-- src/lib/VSDXStylesCollector.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/VSDXContentCollector.cpp b/src/lib/VSDXContentCollector.cpp index 27f17b8..10789cc 100644 --- a/src/lib/VSDXContentCollector.cpp +++ b/src/lib/VSDXContentCollector.cpp @@ -568,7 +568,7 @@ void libvisio::VSDXContentCollector::collectArcTo(unsigned /* id */, unsigned le #define VSD_NUM_POLYLINES_PER_NURBS 50 -void libvisio::VSDXContentCollector::collectNURBSTo(unsigned id, unsigned level, double x2, double y2, unsigned xType, unsigned yType, double degree, std::vector > controlPoints, std::vector knotVector, std::vector weights) +void libvisio::VSDXContentCollector::collectNURBSTo(unsigned /* id */, unsigned level, double x2, double y2, unsigned xType, unsigned yType, double degree, std::vector > controlPoints, std::vector knotVector, std::vector weights) { _handleLevelChange(level); @@ -644,7 +644,7 @@ double libvisio::VSDXContentCollector::_NURBSBasis(unsigned knot, double degree, return basis; } -void libvisio::VSDXContentCollector::collectPolylineTo(unsigned id , unsigned level, double x, double y, unsigned xType, unsigned yType, std::vector > &points) +void libvisio::VSDXContentCollector::collectPolylineTo(unsigned /* id */ , unsigned level, double x, double y, unsigned xType, unsigned yType, std::vector > &points) { _handleLevelChange(level); diff --git a/src/lib/VSDXStylesCollector.cpp b/src/lib/VSDXStylesCollector.cpp index de7b040..276d977 100644 --- a/src/lib/VSDXStylesCollector.cpp +++ b/src/lib/VSDXStylesCollector.cpp @@ -88,12 +88,12 @@ void libvisio::VSDXStylesCollector::collectArcTo(unsigned /* id */, unsigned lev { _handleLevelChange(level); } -void libvisio::VSDXStylesCollector::collectNURBSTo(unsigned id, unsigned level, double x2, double y2, unsigned xType, unsigned yType, double degree, std::vector > controlPoints, std::vector knotVector, std::vector weights) +void libvisio::VSDXStylesCollector::collectNURBSTo(unsigned /* id */, unsigned level, double /* x2 */, double /* y2 */, unsigned /* xType */, unsigned /* yType */, double /* degree */, std::vector > /* controlPoints */, std::vector /* knotVector */, std::vector /* weights */) { _handleLevelChange(level); } -void libvisio::VSDXStylesCollector::collectPolylineTo(unsigned id , unsigned level, double x, double y, unsigned xType, unsigned yType, std::vector > &points) +void libvisio::VSDXStylesCollector::collectPolylineTo(unsigned /* id */, unsigned level, double /* x */, double /* y */, unsigned /* xType */, unsigned /* yType */, std::vector > & /* points */) { _handleLevelChange(level); } -- cgit v1.2.3