summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-16 23:15:20 +0000
committerDana Jansens <danakj@orodu.net>2003-03-16 23:15:20 +0000
commit7f590e53607ef1592d65a425b9cdcaa181912465 (patch)
treebd0baf4b5563845bd8b2339aefd354e4dcd11527 /openbox/openbox.c
parent74c683ee5fb232d7fe9f517b21ffd9ee50872dce (diff)
pointer's variables are config vars
Diffstat (limited to 'openbox/openbox.c')
-rw-r--r--openbox/openbox.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index 7a0cfbb9..54f9b77e 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -14,6 +14,7 @@
#include "hooks.h"
#include "clientwrap.h"
#include "openboxwrap.h"
+#include "configwrap.h"
#include "themerc.h"
#include "timer.h"
#include "../render/render.h"
@@ -133,6 +134,7 @@ int main(int argc, char **argv)
themerc_startup();
engine_startup(themerc_engine);
python_startup();
+ configwrap_startup();
openboxwrap_startup();
clientwrap_startup();
hooks_startup();
@@ -170,6 +172,7 @@ int main(int argc, char **argv)
hooks_shutdown();
clientwrap_shutdown();
openboxwrap_shutdown();
+ configwrap_shutdown();
python_shutdown();
engine_shutdown();
themerc_shutdown();