diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-05 16:23:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-05 16:23:13 +0000 |
| commit | 45087efbcdeec8a4cc985125a656a4bd6e9f3b3e (patch) | |
| tree | 84e122e6ce2d4b703a66447575f573dd3b1bee9d /tools | |
| parent | 88204502a800f57b582e829d25cfeb899d444802 (diff) | |
point and padding became redundant.. do remove padding type from xsd and use point type. also fix bug in theme parser where it was looking for wrong one.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/themetoxml/themetoxml.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/themetoxml/themetoxml.c b/tools/themetoxml/themetoxml.c index 56a5f9c7..c03bd29f 100644 --- a/tools/themetoxml/themetoxml.c +++ b/tools/themetoxml/themetoxml.c @@ -321,8 +321,8 @@ int main(int argc, char **argv) CONT2("dimensions", "handle", NUM(i)); if (read_int(db, "padding.width", &i)) { - ATTR2("dimensions", "padding", "horizontal", NUM(i)); - ATTR2("dimensions", "padding", "vertical", NUM(i)); + ATTR2("dimensions", "padding", "x", NUM(i)); + ATTR2("dimensions", "padding", "y", NUM(i)); } if (read_int(db, "borderWidth", &i)) { @@ -339,8 +339,8 @@ int main(int argc, char **argv) } if (read_int(db, "window.client.padding.width", &i)) { - ATTR2("window", "clientpadding", "horizontal", NUM(i)); - ATTR2("window", "clientpadding", "vertical", NUM(i)); + ATTR2("window", "clientpadding", "x", NUM(i)); + ATTR2("window", "clientpadding", "y", NUM(i)); } if (read_string(db, "window.label.text.justify", &s)) { |
