summaryrefslogtreecommitdiff
path: root/openbox/mouse.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-12 18:12:17 +0000
committerDana Jansens <danakj@orodu.net>2003-08-12 18:12:17 +0000
commit8b67ce7030aa22595d77527cdc5b74b84d185a8b (patch)
treee6e54f9a78194b01594a16553fecf0d0e914fb54 /openbox/mouse.h
parent555e3384ff652ece08b45c6a050688cd5a3231fe (diff)
prefix/capitalize the mouse actions enum
Diffstat (limited to 'openbox/mouse.h')
-rw-r--r--openbox/mouse.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/openbox/mouse.h b/openbox/mouse.h
index a5e8f9a8..7b0f5ad5 100644
--- a/openbox/mouse.h
+++ b/openbox/mouse.h
@@ -7,12 +7,12 @@
#include <X11/Xlib.h>
typedef enum {
- MouseAction_Press,
- MouseAction_Release,
- MouseAction_Click,
- MouseAction_DClick,
- MouseAction_Motion,
- NUM_MOUSEACTION
+ OB_MOUSE_ACTION_PRESS,
+ OB_MOUSE_ACTION_RELEASE,
+ OB_MOUSE_ACTION_CLICK,
+ OB_MOUSE_ACTION_DOUBLE_CLICK,
+ OB_MOUSE_ACTION_MOTION,
+ OB_MOUSE_NUM_ACTIONS
} ObMouseAction;
void mouse_startup();