summaryrefslogtreecommitdiffstats
path: root/src/xml/node.h
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2014-03-24 22:48:55 +0000
committerJohan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl>2014-03-24 22:48:55 +0000
commit55b428abbb6d6664a1922984ca395a4bda811714 (patch)
tree231b2037bcffc17c467f83b161f69a6f5d620c93 /src/xml/node.h
parentadd convenience functions to deal with Glib::ustrings for setting repr attrib... (diff)
downloadinkscape-55b428abbb6d6664a1922984ca395a4bda811714.tar.gz
inkscape-55b428abbb6d6664a1922984ca395a4bda811714.zip
fix tiny mistake
(bzr r13204)
Diffstat (limited to 'src/xml/node.h')
-rw-r--r--src/xml/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml/node.h b/src/xml/node.h
index a41e4e350..c1977b0a8 100644
--- a/src/xml/node.h
+++ b/src/xml/node.h
@@ -207,7 +207,7 @@ public:
*/
virtual void setAttribute(gchar const *key, gchar const *value, bool is_interactive=false)=0;
- void setAttribute(gchar const *key, Glib::ustring const &value, bool is_interactive=false)
+ void setAttribute(char const *key, Glib::ustring const &value, bool is_interactive=false)
{
setAttribute(key, value.empty() ? NULL : value.c_str(), is_interactive);
}