diff options
Diffstat (limited to 'src/xml')
| -rw-r--r-- | src/xml/composite-node-observer.cpp | 4 | ||||
| -rw-r--r-- | src/xml/event.cpp | 16 |
2 files changed, 10 insertions, 10 deletions
diff --git a/src/xml/composite-node-observer.cpp b/src/xml/composite-node-observer.cpp index e390a3f87..e65981616 100644 --- a/src/xml/composite-node-observer.cpp +++ b/src/xml/composite-node-observer.cpp @@ -172,7 +172,7 @@ struct unmarked_record_satisfying { }; template <typename Predicate> -bool mark_one(ObserverRecordList &observers, unsigned &marked_count, +bool mark_one(ObserverRecordList &observers, unsigned &/*marked_count*/, Predicate p) { ObserverRecordList::iterator found=std::find_if( @@ -189,7 +189,7 @@ bool mark_one(ObserverRecordList &observers, unsigned &marked_count, } template <typename Predicate> -bool remove_one(ObserverRecordList &observers, unsigned &marked_count, +bool remove_one(ObserverRecordList &observers, unsigned &/*marked_count*/, Predicate p) { if (observers.empty()) { diff --git a/src/xml/event.cpp b/src/xml/event.cpp index d713200e5..ded96e722 100644 --- a/src/xml/event.cpp +++ b/src/xml/event.cpp @@ -95,25 +95,25 @@ public: parent.addChild(&child, ref); } - void notifyChildRemoved(Node &parent, Node &child, Node *old_ref) { + void notifyChildRemoved(Node &parent, Node &child, Node */*old_ref*/) { parent.removeChild(&child); } void notifyChildOrderChanged(Node &parent, Node &child, - Node *old_ref, Node *new_ref) + Node */*old_ref*/, Node *new_ref) { parent.changeOrder(&child, new_ref); } void notifyAttributeChanged(Node &node, GQuark name, - Inkscape::Util::ptr_shared<char> old_value, + Inkscape::Util::ptr_shared<char> /*old_value*/, Inkscape::Util::ptr_shared<char> new_value) { node.setAttribute(g_quark_to_string(name), new_value); } void notifyContentChanged(Node &node, - Inkscape::Util::ptr_shared<char> old_value, + Inkscape::Util::ptr_shared<char> /*old_value*/, Inkscape::Util::ptr_shared<char> new_value) { node.setContent(new_value); @@ -435,18 +435,18 @@ public: g_warning("Event: Added %s to %s after %s", node_to_string(parent).c_str(), node_to_string(child).c_str(), ref_to_string(ref).c_str()); } - void notifyChildRemoved(Node &parent, Node &child, Node *ref) { + void notifyChildRemoved(Node &parent, Node &child, Node */*ref*/) { g_warning("Event: Removed %s from %s", node_to_string(parent).c_str(), node_to_string(child).c_str()); } void notifyChildOrderChanged(Node &parent, Node &child, - Node *old_ref, Node *new_ref) + Node */*old_ref*/, Node *new_ref) { g_warning("Event: Moved %s after %s in %s", node_to_string(child).c_str(), ref_to_string(new_ref).c_str(), node_to_string(parent).c_str()); } void notifyAttributeChanged(Node &node, GQuark name, - Inkscape::Util::ptr_shared<char> old_value, + Inkscape::Util::ptr_shared<char> /*old_value*/, Inkscape::Util::ptr_shared<char> new_value) { if (new_value) { @@ -457,7 +457,7 @@ public: } void notifyContentChanged(Node &node, - Inkscape::Util::ptr_shared<char> old_value, + Inkscape::Util::ptr_shared<char> /*old_value*/, Inkscape::Util::ptr_shared<char> new_value) { if (new_value) { |
