diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2013-10-27 19:57:50 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2013-10-27 19:57:50 +0000 |
| commit | 4aa096a5a8537b6e28c4502d817e546b8b7fdd9b (patch) | |
| tree | 37473619b5368e19d079f2675f575bdbfbbfe93f /src/marker.cpp | |
| parent | fix warning and add comments about fixing code (diff) | |
| download | inkscape-4aa096a5a8537b6e28c4502d817e546b8b7fdd9b.tar.gz inkscape-4aa096a5a8537b6e28c4502d817e546b8b7fdd9b.zip | |
"fix" some "unused parameter" warnings
(bzr r12736)
Diffstat (limited to 'src/marker.cpp')
| -rw-r--r-- | src/marker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/marker.cpp b/src/marker.cpp index b38138f8c..d145aadaf 100644 --- a/src/marker.cpp +++ b/src/marker.cpp @@ -503,11 +503,11 @@ void SPMarker::hide(unsigned int key) { SPGroup::hide(key); } -Geom::OptRect SPMarker::bbox(Geom::Affine const &transform, SPItem::BBoxType type) const { +Geom::OptRect SPMarker::bbox(Geom::Affine const &/*transform*/, SPItem::BBoxType /*type*/) const { return Geom::OptRect(); } -void SPMarker::print(SPPrintContext* ctx) { +void SPMarker::print(SPPrintContext* /*ctx*/) { } |
