summaryrefslogtreecommitdiff
path: root/openbox/grab.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-07-23 20:55:19 -0400
committerDana Jansens <danakj@orodu.net>2008-01-20 01:36:54 -0500
commita2f5a826a1ed79102cd59a9ef17724fb90afe86b (patch)
tree37f4ed0e023b30fcef567b259b79d3f4b7b8e0f5 /openbox/grab.c
parent452627a51ce38229533dfe5d8eeb877b0918d02c (diff)
move the xerror handling into the libobt
Diffstat (limited to 'openbox/grab.c')
-rw-r--r--openbox/grab.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/openbox/grab.c b/openbox/grab.c
index 43e9a815..d84ef94f 100644
--- a/openbox/grab.c
+++ b/openbox/grab.c
@@ -21,9 +21,9 @@
#include "modkeys.h"
#include "openbox.h"
#include "event.h"
-#include "xerror.h"
#include "screen.h"
#include "debug.h"
+#include "obt/display.h"
#include <glib.h>
#include <X11/Xlib.h>
@@ -174,13 +174,13 @@ void grab_button_full(guint button, guint state, Window win, guint mask,
{
guint i;
- xerror_set_ignore(TRUE); /* can get BadAccess from these */
- xerror_occured = FALSE;
+ /* can get BadAccess from these */
+ obt_display_ignore_errors(ob_display, TRUE);
for (i = 0; i < MASK_LIST_SIZE; ++i)
XGrabButton(ob_display, button, state | mask_list[i], win, False, mask,
pointer_mode, GrabModeAsync, None, ob_cursor(cur));
- xerror_set_ignore(FALSE);
- if (xerror_occured)
+ obt_display_ignore_errors(ob_display, FALSE);
+ if (obt_display_error_occured())
ob_debug("Failed to grab button %d modifiers %d", button, state);
}
@@ -196,13 +196,13 @@ void grab_key(guint keycode, guint state, Window win, gint keyboard_mode)
{
guint i;
- xerror_set_ignore(TRUE); /* can get BadAccess' from these */
- xerror_occured = FALSE;
+ /* can get BadAccess' from these */
+ obt_display_ignore_errors(ob_display, TRUE);
for (i = 0; i < MASK_LIST_SIZE; ++i)
XGrabKey(ob_display, keycode, state | mask_list[i], win, FALSE,
GrabModeAsync, keyboard_mode);
- xerror_set_ignore(FALSE);
- if (xerror_occured)
+ obt_display_ignore_errors(ob_display, FALSE);
+ if (obt_display_error_occured())
ob_debug("Failed to grab keycode %d modifiers %d", keycode, state);
}