diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-15 19:20:05 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-15 19:20:05 +0000 |
| commit | c1b2fc5324522f74a14a5cfa210c95e1509a6e7f (patch) | |
| tree | 7024fd9c49d64e29d3f622250199c5d6a382b721 /openbox/config.c | |
| parent | 3a607fad9df628ab16e0f7436dfbfc9b22634003 (diff) | |
make openbox base-dir spec compliant, and change the theme dir structure, so that themes go in $XDG_DATA_DIRS/themes/ with gtk/metacity/whateverelse themes
Diffstat (limited to 'openbox/config.c')
| -rw-r--r-- | openbox/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/config.c b/openbox/config.c index 4251390c..b6ec290b 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -189,7 +189,7 @@ static void parse_theme(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, g_free(config_theme); c = parse_string(doc, n); - config_theme = ob_expand_tilde(c); + config_theme = parse_expand_tilde(c); g_free(c); } if ((n = parse_find_node("titleLayout", node))) { @@ -304,7 +304,7 @@ static void parse_menu(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, void *d) c = parse_string(doc, node); config_menu_files = g_slist_append(config_menu_files, - ob_expand_tilde(c)); + parse_expand_tilde(c)); g_free(c); } } |
