summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-12 07:31:31 +0000
committerDana Jansens <danakj@orodu.net>2003-08-12 07:31:31 +0000
commit8529aab619c0f26a79cd49ec0f8910433a541263 (patch)
treedde094037b766504b0f0cd2ae37120dbcc3fa41d
parenta414fe42d4654c4c76e344e5bfe0d5838f24da1e (diff)
remove debug printings
-rw-r--r--openbox/action.c3
-rw-r--r--openbox/mouse.c4
-rw-r--r--openbox/screen.c2
3 files changed, 0 insertions, 9 deletions
diff --git a/openbox/action.c b/openbox/action.c
index 275ba96a..a7ddc7dd 100644
--- a/openbox/action.c
+++ b/openbox/action.c
@@ -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);
}
diff --git a/openbox/mouse.c b/openbox/mouse.c
index ac0fb1d2..6651a1f2 100644
--- a/openbox/mouse.c
+++ b/openbox/mouse.c
@@ -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);
}
}
diff --git a/openbox/screen.c b/openbox/screen.c
index 6c9042a9..334e1226 100644
--- a/openbox/screen.c
+++ b/openbox/screen.c
@@ -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: