diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-09-09 13:29:39 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-09-09 13:29:39 +0200 |
commit | 2b751ec476860bf4ba0d4992cbdb77a1ac20e4b0 (patch) | |
tree | a8333b3e0e1fc25e82ba718e78f44509b3f6c56f | |
parent | 8f1069afd65d60704f4e81cfb905a8134c66781f (diff) |
Remove one warning of unused variablelibvisio-0.0.7
-rw-r--r-- | src/lib/VSDXContentCollector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/VSDXContentCollector.cpp b/src/lib/VSDXContentCollector.cpp index 9b1fcb9..e4c6b57 100644 --- a/src/lib/VSDXContentCollector.cpp +++ b/src/lib/VSDXContentCollector.cpp @@ -1264,7 +1264,7 @@ void libvisio::VSDXContentCollector::collectSplineStart(unsigned /* id */, unsig } -void libvisio::VSDXContentCollector::collectSplineKnot(unsigned /* id */, unsigned level, double x, double y, double knot) +void libvisio::VSDXContentCollector::collectSplineKnot(unsigned /* id */, unsigned /* level */, double x, double y, double knot) { m_splineKnotVector.push_back(knot); m_splineControlPoints.push_back(std::pair<double,double>(m_splineX,m_splineY)); |