]> Dogcows Code - chaz/openbox/commitdiff
remove debug printings
authorDana Jansens <danakj@orodu.net>
Tue, 12 Aug 2003 07:31:31 +0000 (07:31 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 12 Aug 2003 07:31:31 +0000 (07:31 +0000)
openbox/action.c
openbox/mouse.c
openbox/screen.c

index 275ba96a42c1088cb5db8499e875786080be1866..a7ddc7dd2f89fd54c62a9ae788ef724e019e5453 100644 (file)
@@ -918,9 +918,6 @@ void action_send_to_desktop_dir(union ActionData *data)
     d = screen_cycle_desktop(data->sendtodir.dir, data->sendtodir.wrap,
                              data->sendtodir.linear,
                              data->sendtodir.final, data->sendtodir.cancel);
-
-    g_message("sendto %d", d);
-
     client_set_desktop(c, d, TRUE);
     screen_set_desktop(d);
 }
index ac0fb1d2b777ac033320ba334f135ae845f798b7..6651a1f2c1c39d73e34da2140c78e7cc69d86d5a 100644 (file)
@@ -90,8 +90,6 @@ static void fire_button(ObMouseAction a, ObFrameContext context,
     GSList *it;
     ObMouseBinding *b;
 
-    g_message("%d %d %d", context, state, button);
-
     for (it = bound_contexts[context]; it != NULL; it = it->next) {
         b = it->data;
         if (b->state == state && b->button == button)
@@ -128,8 +126,6 @@ static void fire_button(ObMouseAction a, ObFrameContext context,
                 keyboard_interactive_grab(state, c, context, act);
             }
 
-            g_message("acting");
-
             act->func(&act->data);
         }
     }
index 6c9042a99edb1b3b51d10a6cbb5ecbea60b9c95d..334e1226fdd19bd829e7fb33a142f71b651f5f8f 100644 (file)
@@ -625,7 +625,6 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
     get_row_col(d, &r, &c);
 
     if (lin) {
-        g_message("linear %d", d);
         switch (dir) {
         case OB_DIRECTION_EAST:
             if (d < screen_num_desktops - 1)
@@ -643,7 +642,6 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
             assert(0);
             return screen_desktop;
         }
-        g_message("linear %d done", d);
     } else {
         switch (dir) {
         case OB_DIRECTION_EAST:
This page took 0.032754 seconds and 4 git commands to generate.