summaryrefslogtreecommitdiff
path: root/tools/themetoxml
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-07 02:38:13 +0000
committerDana Jansens <danakj@orodu.net>2007-05-07 02:38:13 +0000
commit24c0d618471276fd514cd666bc7067d30be8d0ca (patch)
tree77bff38312cc980b549e1db1ac5bb41ad698cbcb /tools/themetoxml
parent974391d345adf122816831cc24cbdfec5616aed1 (diff)
add the 'engine="box"' to the theme format, and require it to be there so we can change that in the future
Diffstat (limited to 'tools/themetoxml')
-rw-r--r--tools/themetoxml/themetoxml.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/themetoxml/themetoxml.c b/tools/themetoxml/themetoxml.c
index 12944f88..f7d5aa6e 100644
--- a/tools/themetoxml/themetoxml.c
+++ b/tools/themetoxml/themetoxml.c
@@ -314,6 +314,7 @@ int main(int argc, char **argv)
doc = xmlNewDoc((const xmlChar*) "1.0");
xmlDocSetRootElement
(doc,(root = xmlNewNode(NULL, (const xmlChar*)"openbox_theme")));
+ xmlSetProp(root, (const xmlChar*)"engine", (const xmlChar*)"box");
xmlSetProp(root, (const xmlChar*)"version", (const xmlChar*)"1");
xmlSetProp(root, (const xmlChar*)"xmlns",
(const xmlChar*)"http://openbox.org/themerc");