summaryrefslogtreecommitdiffstats
path: root/src/Data/Info.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/Info.h')
-rw-r--r--src/Data/Info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Data/Info.h b/src/Data/Info.h
index 1678b81..f9343d2 100644
--- a/src/Data/Info.h
+++ b/src/Data/Info.h
@@ -43,7 +43,7 @@ class Info {
void setName(const Glib::ustring &n) {
name = n;
- nameNode->get_child_text()->set_content(n);
+ nameNode->set_child_text(n);
}
const Glib::ustring& getDescription() const {
@@ -52,7 +52,7 @@ class Info {
void setDescription(const Glib::ustring &d) {
desc = d;
- descNode->get_child_text()->set_content(d);
+ descNode->set_child_text(d);
}
};