diff options
author | Ted Gould <ted@gould.cx> | 2009-12-18 12:08:12 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-18 12:08:12 -0600 |
commit | 6cdcb68487310df683f7c836e94f9d2111b8bb78 (patch) | |
tree | ff3eec6fef6478bf14935b3ae02d72c4692956a8 /tests/test-gtk-label-client.c | |
parent | 6beb7871a30084471e949a998d961e42bc12e92b (diff) | |
parent | 7cbec8065b76e02f383d9161b68fa2062b9db0b5 (diff) | |
download | libdbusmenu-6cdcb68487310df683f7c836e94f9d2111b8bb78.tar.gz libdbusmenu-6cdcb68487310df683f7c836e94f9d2111b8bb78.tar.bz2 libdbusmenu-6cdcb68487310df683f7c836e94f9d2111b8bb78.zip |
Updating to the basis of the v2 changes for dbusmenu
Diffstat (limited to 'tests/test-gtk-label-client.c')
-rw-r--r-- | tests/test-gtk-label-client.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test-gtk-label-client.c b/tests/test-gtk-label-client.c index 09325be..070c278 100644 --- a/tests/test-gtk-label-client.c +++ b/tests/test-gtk-label-client.c @@ -152,9 +152,11 @@ main (int argc, char ** argv) { gtk_init(&argc, &argv); + g_debug("Client Initialized. Waiting."); /* Make sure the server starts up and all that */ g_usleep(500000); + g_debug("Building Window"); GtkWidget * window = gtk_window_new(GTK_WINDOW_TOPLEVEL); GtkWidget * menubar = gtk_menu_bar_new(); GtkWidget * menuitem = gtk_menu_item_new_with_label("Test"); @@ -168,6 +170,7 @@ main (int argc, char ** argv) death_timer = g_timeout_add_seconds(60, timer_func, window); + g_debug("Entering Mainloop"); mainloop = g_main_loop_new(NULL, FALSE); g_main_loop_run(mainloop); |