summaryrefslogtreecommitdiff
path: root/openbox/mouse.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-17 08:11:59 +0000
committerDana Jansens <danakj@orodu.net>2003-09-17 08:11:59 +0000
commitbdc10887cbb7a51c1231978806963e622619e2f9 (patch)
treee48e24240ed0cfcfa205321d20a7c8649941e565 /openbox/mouse.c
parentebe3091560a859996a9904c342c62b512b39bee0 (diff)
provide a way to remove all bindings
Diffstat (limited to 'openbox/mouse.c')
-rw-r--r--openbox/mouse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/mouse.c b/openbox/mouse.c
index 251251b7..703ea36b 100644
--- a/openbox/mouse.c
+++ b/openbox/mouse.c
@@ -128,7 +128,7 @@ static void grab_all_clients(gboolean grab)
mouse_grab_for_client(it->data, grab);
}
-static void clearall()
+void mouse_unbind_all()
{
int i;
GSList *it;
@@ -295,8 +295,8 @@ void mouse_event(ObClient *client, XEvent *e)
}
}
-gboolean mouse_bind(char *buttonstr, char *contextstr, ObMouseAction mact,
- ObAction *action)
+gboolean mouse_bind(const gchar *buttonstr, const gchar *contextstr,
+ ObMouseAction mact, ObAction *action)
{
guint state, button;
ObFrameContext context;
@@ -347,5 +347,5 @@ void mouse_startup(gboolean reconfig)
void mouse_shutdown(gboolean reconfig)
{
grab_all_clients(FALSE);
- clearall();
+ mouse_unbind_all();
}