summaryrefslogtreecommitdiffstats
path: root/src/livarot/PathStroke.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-07-16 03:50:53 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-07-16 03:50:53 +0000
commitb224bc6b1b0b9db71828b67fa51a29103742d65d (patch)
tree9a015c22996a11b5a643f115e5ffd7380be1c91a /src/livarot/PathStroke.cpp
parentremove debug messages from last commits (diff)
downloadinkscape-b224bc6b1b0b9db71828b67fa51a29103742d65d.tar.gz
inkscape-b224bc6b1b0b9db71828b67fa51a29103742d65d.zip
warning cleanup
(bzr r6329)
Diffstat (limited to 'src/livarot/PathStroke.cpp')
-rw-r--r--src/livarot/PathStroke.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/livarot/PathStroke.cpp b/src/livarot/PathStroke.cpp
index c182b93aa..f4ece6892 100644
--- a/src/livarot/PathStroke.cpp
+++ b/src/livarot/PathStroke.cpp
@@ -91,7 +91,7 @@ void Path::Stroke(Shape *dest, bool doClose, double width, JoinType join,
}
void Path::DoStroke(int off, int N, Shape *dest, bool doClose, double width, JoinType join,
- ButtType butt, double miter, bool justAdd)
+ ButtType butt, double miter, bool /*justAdd*/)
{
if (N <= 1) {
return;
@@ -286,7 +286,7 @@ void Path::DoButt(Shape *dest, double width, ButtType butt, NR::Point pos, NR::P
void Path::DoJoin (Shape *dest, double width, JoinType join, NR::Point pos, NR::Point prev,
- NR::Point next, double miter, double prevL, double nextL,
+ NR::Point next, double miter, double /*prevL*/, double /*nextL*/,
int *stNo, int *enNo)
{
NR::Point pnor = prev.ccw();
@@ -410,7 +410,7 @@ void Path::DoJoin (Shape *dest, double width, JoinType join, NR::Point pos, NR::
void
Path::DoLeftJoin (Shape * dest, double width, JoinType join, NR::Point pos,
- NR::Point prev, NR::Point next, double miter, double prevL, double nextL,
+ NR::Point prev, NR::Point next, double miter, double /*prevL*/, double /*nextL*/,
int &leftStNo, int &leftEnNo,int pathID,int pieceID,double tID)
{
NR::Point pnor=prev.ccw();
@@ -553,8 +553,8 @@ Path::DoLeftJoin (Shape * dest, double width, JoinType join, NR::Point pos,
}
void
Path::DoRightJoin (Shape * dest, double width, JoinType join, NR::Point pos,
- NR::Point prev, NR::Point next, double miter, double prevL,
- double nextL, int &rightStNo, int &rightEnNo,int pathID,int pieceID,double tID)
+ NR::Point prev, NR::Point next, double miter, double /*prevL*/,
+ double /*nextL*/, int &rightStNo, int &rightEnNo,int pathID,int pieceID,double tID)
{
const NR::Point pnor=prev.ccw();
const NR::Point nnor=next.ccw();