From f3fdf7d8462a405ec435ef29079151f242ea0060 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sun, 18 Mar 2001 01:18:08 +0000 Subject: [PATCH] and get rid of that printf! SVN revision: 4391 --- src/actions.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/actions.c b/src/actions.c index 314dd23d0..893c7b67f 100644 --- a/src/actions.c +++ b/src/actions.c @@ -127,7 +127,6 @@ _e_action_find(char *action, int act, int button, char *key, Ev_Key_Modifiers mo /* it's a key? lets grab it! */ if ((a->key) && (strlen(a->key) > 0)) { - printf("grab it! (%s %i)\n", a->key, a->modifiers); if (a->modifiers == -1) e_keys_grab(a->key, EV_KEY_MODIFIER_NONE, 1); else @@ -198,7 +197,6 @@ _e_action_free(E_Action *a) /* it's a key? lets ungrab it! */ if ((a->key) && (strlen(a->key) > 0) && (a->grabbed)) { - printf("ungrab it! (%s %i)\n", a->key, a->modifiers); if (a->modifiers == -1) e_keys_ungrab(a->key, EV_KEY_MODIFIER_NONE, 1); else @@ -1159,7 +1157,6 @@ e_act_max_start (void *o, E_Action *a, void *data, int x, int y, int rx, int ry) E_Border *b; b = o; - printf("e_act_max_start\n"); if (!b) b = e_border_current_focused(); if (!b) return; if (b->current.shaded > 0) return;