diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-22 23:26:43 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-22 23:26:43 +0000 |
| commit | 5bf68f762b8fc87cf5583b645b948b4fe55f179f (patch) | |
| tree | 9fd2db21c6fe08bc9433574dc429744f2966a79b /openbox/engine.c | |
| parent | 4cc0d9b72d4bb084e6736c60319fd8e2ab92ef6a (diff) | |
make the openbox engine use the new config shit instead of the themerc shit.
order te startup so that plugins can set up their config shit before parsing the config, then the config is parsed, engine is loaded, and finally the plugins are officially started.
Diffstat (limited to 'openbox/engine.c')
| -rw-r--r-- | openbox/engine.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/openbox/engine.c b/openbox/engine.c index c4e24a39..c654d263 100644 --- a/openbox/engine.c +++ b/openbox/engine.c @@ -64,9 +64,8 @@ void engine_startup() ConfigValue engine; module = NULL; - g_message("ENGINE STARTUP"); + if (config_get("engine", Config_String, &engine)) { - g_warning("GOT ENGINE %s", engine.string); if (load(engine.string)) return; g_warning("Failed to load the engine '%s'", engine.string); |
