and get rid of that printf!
authorCarsten Haitzler <raster@rasterman.com>
Sun, 18 Mar 2001 01:18:08 +0000 (01:18 +0000)
committerCarsten Haitzler <raster@rasterman.com>
Sun, 18 Mar 2001 01:18:08 +0000 (01:18 +0000)
SVN revision: 4391

src/actions.c

index 314dd23..893c7b6 100644 (file)
@@ -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;