diff options
author | Ted Gould <ted@gould.cx> | 2009-12-18 13:22:07 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-18 13:22:07 -0600 |
commit | 66132fff9cfab8b0a071e1cc5b8116e70fa73cfd (patch) | |
tree | 30ede0f9f18001d87bec4d53ab10a4fa27168b97 /tests/test-gtk-label-client.c | |
parent | 49ae07290d8fb13ec4adae36759b0e0a94d1ea82 (diff) | |
parent | 6cdcb68487310df683f7c836e94f9d2111b8bb78 (diff) | |
download | libdbusmenu-66132fff9cfab8b0a071e1cc5b8116e70fa73cfd.tar.gz libdbusmenu-66132fff9cfab8b0a071e1cc5b8116e70fa73cfd.tar.bz2 libdbusmenu-66132fff9cfab8b0a071e1cc5b8116e70fa73cfd.zip |
* Updating trunk
* Changing API to be V0.2 for reals
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); |