summaryrefslogtreecommitdiff
path: root/plugins/keyboard/keyboard.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-19 04:16:19 +0000
committerDana Jansens <danakj@orodu.net>2003-03-19 04:16:19 +0000
commit4bcd03b2d0904e2b5443a2383b66055422240255 (patch)
treeeff8130702cf9a4eff2f18cc10f549d9786be0cc /plugins/keyboard/keyboard.h
parent51b93d9c4ce080f337fce7175a43d0de269dec81 (diff)
mouse and key bindings plugins work. segfault somewhere still on shutdown
Diffstat (limited to 'plugins/keyboard/keyboard.h')
-rw-r--r--plugins/keyboard/keyboard.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/keyboard/keyboard.h b/plugins/keyboard/keyboard.h
index b183fa38..e2406d93 100644
--- a/plugins/keyboard/keyboard.h
+++ b/plugins/keyboard/keyboard.h
@@ -1,14 +1,15 @@
#ifndef __plugin_keyboard_keybaord_h
#define __plugin_keyboard_keybaord_h
-#include "keyaction.h"
#include <glib.h>
+#include "../../kernel/action.h"
+
typedef struct KeyBindingTree {
guint state;
guint key;
GList *keylist;
- KeyAction action;
+ Action *action;
/* the next binding in the tree at the same level */
struct KeyBindingTree *next_sibling;