diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-24 06:02:38 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-24 06:02:38 +0000 |
| commit | 5be0a82a353b67160142134de1cc51fa31d72759 (patch) | |
| tree | 333f0e70a6cf4f2cb5252c2e16922a1b6408dc06 /plugins/menu/client_menu.c | |
| parent | 230abdc5a0848cd05dc3a007826a2a6b8a73c0a5 (diff) | |
use ob_debug for any debug printing and only display the output when its a debug build or when --debug is passed to it
Diffstat (limited to 'plugins/menu/client_menu.c')
| -rw-r--r-- | plugins/menu/client_menu.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/menu/client_menu.c b/plugins/menu/client_menu.c index 931ee79d..568c8b2d 100644 --- a/plugins/menu/client_menu.c +++ b/plugins/menu/client_menu.c @@ -1,14 +1,14 @@ -#include <glib.h> - +#include "kernel/debug.h" #include "kernel/menu.h" #include "kernel/screen.h" #include "kernel/client.h" #include "kernel/openbox.h" - #include "kernel/frame.h" #include "render/theme.h" +#include <glib.h> + static char *PLUGIN_NAME = "client_menu"; static ObMenu *send_to_menu; @@ -42,7 +42,7 @@ void client_send_to_update(ObMenu *self) if (it != NULL || i != screen_num_desktops) { menu_clear(self); - g_message("update"); + ob_debug("update\n"); for (i = 0; i < screen_num_desktops; ++i) { ObMenuEntry *e; Action *a = action_from_string("sendtodesktop"); @@ -58,7 +58,8 @@ void client_send_to_update(ObMenu *self) void client_menu_show(ObMenu *self, int x, int y, ObClient *client) { - guint i, newy, newx; + guint i; + gint newy, newx; Rect *a = NULL; g_assert(!self->invalid); |
