summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-03-14 04:09:37 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-03-14 04:09:37 +0000
commitff62305495ed75b5099f09963cd55d1e52e4ed62 (patch)
tree6f2cdb5fcf72d83f26bbbb9031c3934838173ff7 /src/xml
parentAdd convenience functions to read from/write to Glib::ustrings. (diff)
downloadinkscape-ff62305495ed75b5099f09963cd55d1e52e4ed62.tar.gz
inkscape-ff62305495ed75b5099f09963cd55d1e52e4ed62.zip
Unused params
(bzr r5087)
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/comment-node.h2
-rw-r--r--src/xml/element-node.h2
-rw-r--r--src/xml/pi-node.h2
-rw-r--r--src/xml/text-node.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/xml/comment-node.h b/src/xml/comment-node.h
index b804a00d9..4be09ec85 100644
--- a/src/xml/comment-node.h
+++ b/src/xml/comment-node.h
@@ -32,7 +32,7 @@ struct CommentNode : public SimpleNode {
Inkscape::XML::NodeType type() const { return Inkscape::XML::COMMENT_NODE; }
protected:
- SimpleNode *_duplicate(Document* doc) const { return new CommentNode(*this); }
+ SimpleNode *_duplicate(Document* /*doc*/) const { return new CommentNode(*this); }
};
}
diff --git a/src/xml/element-node.h b/src/xml/element-node.h
index 4bac55f83..1b79910a8 100644
--- a/src/xml/element-node.h
+++ b/src/xml/element-node.h
@@ -29,7 +29,7 @@ public:
Inkscape::XML::NodeType type() const { return Inkscape::XML::ELEMENT_NODE; }
protected:
- SimpleNode *_duplicate(Document* doc) const { return new ElementNode(*this); }
+ SimpleNode *_duplicate(Document* /*doc*/) const { return new ElementNode(*this); }
};
}
diff --git a/src/xml/pi-node.h b/src/xml/pi-node.h
index c3f84b636..b89ef25a0 100644
--- a/src/xml/pi-node.h
+++ b/src/xml/pi-node.h
@@ -32,7 +32,7 @@ struct PINode : public SimpleNode {
Inkscape::XML::NodeType type() const { return Inkscape::XML::PI_NODE; }
protected:
- SimpleNode *_duplicate(Document* doc) const { return new PINode(*this); }
+ SimpleNode *_duplicate(Document* /*doc*/) const { return new PINode(*this); }
};
}
diff --git a/src/xml/text-node.h b/src/xml/text-node.h
index 36f638ad9..adcacb604 100644
--- a/src/xml/text-node.h
+++ b/src/xml/text-node.h
@@ -32,7 +32,7 @@ struct TextNode : public SimpleNode {
Inkscape::XML::NodeType type() const { return Inkscape::XML::TEXT_NODE; }
protected:
- SimpleNode *_duplicate(Document* doc) const { return new TextNode(*this); }
+ SimpleNode *_duplicate(Document* /*doc*/) const { return new TextNode(*this); }
};
}