From 7a6a1baa2b891c16edd7fbb86be3179f92adaee2 Mon Sep 17 00:00:00 2001 From: Joseph Da Silva Date: Wed, 20 Mar 2019 21:22:46 +0530 Subject: Fixed: circles and ellipses had wrong element names in XML editor (Issue #116) --- src/xml/node-observer.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/xml/node-observer.h') diff --git a/src/xml/node-observer.h b/src/xml/node-observer.h index 043ea2b32..e3173a846 100644 --- a/src/xml/node-observer.h +++ b/src/xml/node-observer.h @@ -145,6 +145,22 @@ public: INK_UNUSED(old_value); INK_UNUSED(new_value); } + + /** + * @brief Element name change callback. + * + * This method is called whenever an element node's name is changed. + * + * @param node The changed XML node. + * @param old_name GQuark corresponding to the old element name. + * @param new_name GQuark corresponding to the new element name. + */ + virtual void notifyElementNameChanged(Node& node, GQuark old_name, GQuark new_name) { + INK_UNUSED(node); + INK_UNUSED(old_name); + INK_UNUSED(new_name); + } + }; } // namespace XML -- cgit v1.2.3