summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a03d7b1)
raw | patch | inline | side by side (parent: a03d7b1)
author | joncruz <joncruz@users.sourceforge.net> | |
Fri, 14 Mar 2008 04:09:37 +0000 (04:09 +0000) | ||
committer | joncruz <joncruz@users.sourceforge.net> | |
Fri, 14 Mar 2008 04:09:37 +0000 (04:09 +0000) |
src/xml/comment-node.h | patch | blob | history | |
src/xml/element-node.h | patch | blob | history | |
src/xml/pi-node.h | patch | blob | history | |
src/xml/text-node.h | patch | blob | history |
diff --git a/src/xml/comment-node.h b/src/xml/comment-node.h
index b804a00d95b8e9071389ad30470d2939dddc903c..4be09ec858fd0fc82295224898b07b58ff4dfe92 100644 (file)
--- a/src/xml/comment-node.h
+++ b/src/xml/comment-node.h
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 4bac55f83442160349bb853f9392376efa4f9334..1b79910a83e21051ca142b463e32bcb0d5c3b1bb 100644 (file)
--- a/src/xml/element-node.h
+++ b/src/xml/element-node.h
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 c3f84b6367df007f502e6c37f958b8bfaa6a22ea..b89ef25a03169f4b60a086d283cc5a5764bd7d11 100644 (file)
--- a/src/xml/pi-node.h
+++ b/src/xml/pi-node.h
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 36f638ad90a29e7997dcb26a4e76d5b4f5acdab0..adcacb604fc8dedbd9d602784588bdfdbcf00545 100644 (file)
--- a/src/xml/text-node.h
+++ b/src/xml/text-node.h
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); }
};
}