Code

Unused params
authorjoncruz <joncruz@users.sourceforge.net>
Fri, 14 Mar 2008 04:09:37 +0000 (04:09 +0000)
committerjoncruz <joncruz@users.sourceforge.net>
Fri, 14 Mar 2008 04:09:37 +0000 (04:09 +0000)
src/xml/comment-node.h
src/xml/element-node.h
src/xml/pi-node.h
src/xml/text-node.h

index b804a00d95b8e9071389ad30470d2939dddc903c..4be09ec858fd0fc82295224898b07b58ff4dfe92 100644 (file)
@@ -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); }
 };
 
 }
index 4bac55f83442160349bb853f9392376efa4f9334..1b79910a83e21051ca142b463e32bcb0d5c3b1bb 100644 (file)
@@ -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); }
 };
 
 }
index c3f84b6367df007f502e6c37f958b8bfaa6a22ea..b89ef25a03169f4b60a086d283cc5a5764bd7d11 100644 (file)
@@ -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); }
 };
 
 }
index 36f638ad90a29e7997dcb26a4e76d5b4f5acdab0..adcacb604fc8dedbd9d602784588bdfdbcf00545 100644 (file)
@@ -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); }
 };
 
 }