diff options
| author | Martin Owens <doctormo@gmail.com> | 2019-03-20 18:07:04 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2019-03-20 18:07:04 +0000 |
| commit | 3248c4cf747dc0c3e733c062375ae97b2a4e9e47 (patch) | |
| tree | 8d2802ee94cff4590f179da7214e098e7095c3be /src/xml/node.h | |
| parent | Disable GTK3's motion event compression which was making drawing lag. (diff) | |
| parent | Add explicit overrides (diff) | |
| download | inkscape-3248c4cf747dc0c3e733c062375ae97b2a4e9e47.tar.gz inkscape-3248c4cf747dc0c3e733c062375ae97b2a4e9e47.zip | |
Fix #116: Wrong element names shown in XML editor for circles and ellipses
Diffstat (limited to 'src/xml/node.h')
| -rw-r--r-- | src/xml/node.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/xml/node.h b/src/xml/node.h index 11a23c6ac..b6a0df353 100644 --- a/src/xml/node.h +++ b/src/xml/node.h @@ -212,16 +212,15 @@ public: value.empty() ? nullptr : value.c_str(), is_interactive); } //@} - /** - * @brief Directly set the integer GQuark code for the name of the node + * @brief Set the integer GQuark code for the name of the node. * - * This function is a hack to easily move elements with no namespace to the SVG namespace. * Do not use this function unless you really have a good reason. * - * @param code The integer value corresponding to the string to be set as the name of this node + * @param code The integer value corresponding to the string to be set as + * the name of this node */ - virtual void setCodeUnsafe(int code)=0; + virtual void setCodeUnsafe(int code) = 0; /*@}*/ |
