summaryrefslogtreecommitdiff
path: root/openbox/config.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-21 23:17:45 +0000
committerDana Jansens <danakj@orodu.net>2007-06-21 23:17:45 +0000
commit5e8ec2cb781ba07341a5970b3e829cc59a8cf332 (patch)
treef7d9b1e624669e6cf54c8999b3606be14fd3bd79 /openbox/config.c
parente5b94e6072287d39a777a3cedd0f10a66c58a2b5 (diff)
maybe the new actions framework is kinda there now
Diffstat (limited to 'openbox/config.c')
-rw-r--r--openbox/config.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/openbox/config.c b/openbox/config.c
index 2eb8e13c..1f651ced 100644
--- a/openbox/config.c
+++ b/openbox/config.c
@@ -23,6 +23,7 @@
#include "prop.h"
#include "translate.h"
#include "client.h"
+#include "actions.h"
#include "screen.h"
#include "parser/parse.h"
#include "openbox.h"
@@ -357,9 +358,9 @@ static void parse_key(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
}
else if ((n = parse_find_node("action", node->children))) {
while (n) {
- ObAction *action;
+ ObActionsDefinition *action;
- action = action_parse(i, doc, n, OB_USER_ACTION_KEYBOARD_KEY);
+ action = actions_parse(i, doc, n);
if (action)
keyboard_bind(keylist, action);
n = parse_find_node("action", n->next);