diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2008-07-16 03:50:53 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2008-07-16 03:50:53 +0000 |
| commit | b224bc6b1b0b9db71828b67fa51a29103742d65d (patch) | |
| tree | 9a015c22996a11b5a643f115e5ffd7380be1c91a /src/livarot/path-description.cpp | |
| parent | remove debug messages from last commits (diff) | |
| download | inkscape-b224bc6b1b0b9db71828b67fa51a29103742d65d.tar.gz inkscape-b224bc6b1b0b9db71828b67fa51a29103742d65d.zip | |
warning cleanup
(bzr r6329)
Diffstat (limited to 'src/livarot/path-description.cpp')
| -rw-r--r-- | src/livarot/path-description.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/livarot/path-description.cpp b/src/livarot/path-description.cpp index 96cd81ee6..8058e0452 100644 --- a/src/livarot/path-description.cpp +++ b/src/livarot/path-description.cpp @@ -6,7 +6,7 @@ PathDescr *PathDescrMoveTo::clone() const return new PathDescrMoveTo(*this); } -void PathDescrMoveTo::dumpSVG(Inkscape::SVGOStringStream& s, NR::Point const &last) const +void PathDescrMoveTo::dumpSVG(Inkscape::SVGOStringStream& s, NR::Point const &/*last*/) const { s << "M " << p[NR::X] << " " << p[NR::Y] << " "; } @@ -22,7 +22,7 @@ void PathDescrMoveTo::dump(std::ostream &s) const s << " m " << p[NR::X] << " " << p[NR::Y]; } -void PathDescrLineTo::dumpSVG(Inkscape::SVGOStringStream& s, NR::Point const &last) const +void PathDescrLineTo::dumpSVG(Inkscape::SVGOStringStream& s, NR::Point const &/*last*/) const { s << "L " << p[NR::X] << " " << p[NR::Y] << " "; } @@ -110,7 +110,7 @@ void PathDescrCubicTo::transform(NR::Matrix const& t) p = p * t; } -void PathDescrArcTo::dumpSVG(Inkscape::SVGOStringStream& s, NR::Point const &last) const +void PathDescrArcTo::dumpSVG(Inkscape::SVGOStringStream& s, NR::Point const &/*last*/) const { s << "A " << rx << " " @@ -148,7 +148,7 @@ PathDescr *PathDescrForced::clone() const return new PathDescrForced(*this); } -void PathDescrClose::dumpSVG(Inkscape::SVGOStringStream& s, NR::Point const &last) const +void PathDescrClose::dumpSVG(Inkscape::SVGOStringStream& s, NR::Point const &/*last*/) const { s << "z "; } |
