summaryrefslogtreecommitdiff
path: root/openbox/keytree.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-22 03:05:02 +0000
committerDana Jansens <danakj@orodu.net>2007-06-22 03:05:02 +0000
commit780d1b0961e2eed5fea4645b4398fafb4adad73a (patch)
tree2c200a9ef1f99d93f2d9cee560e649c1c682bb63 /openbox/keytree.c
parentae624a1487fd7db9291c4de1a3b2c34fcab89ef9 (diff)
well.. it compiles..
Diffstat (limited to 'openbox/keytree.c')
-rw-r--r--openbox/keytree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbox/keytree.c b/openbox/keytree.c
index 202dd32c..fb26624d 100644
--- a/openbox/keytree.c
+++ b/openbox/keytree.c
@@ -19,6 +19,7 @@
#include "keyboard.h"
#include "translate.h"
+#include "actions.h"
#include <glib.h>
void tree_destroy(KeyBindingTree *tree)
@@ -35,7 +36,7 @@ void tree_destroy(KeyBindingTree *tree)
g_free(it->data);
g_list_free(tree->keylist);
for (sit = tree->actions; sit != NULL; sit = sit->next)
- action_unref(sit->data);
+ actions_act_unref(sit->data);
g_slist_free(tree->actions);
}
g_free(tree);