From: Carl Worth Date: Thu, 10 Jul 2003 14:58:11 +0000 (+0000) Subject: Removed junk files X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=db9af66aed15acf27e1902aeca9b9a682a388abb;p=grrobot Removed junk files --- diff --git a/src/gtk_explode b/src/gtk_explode deleted file mode 100755 index df44253..0000000 Binary files a/src/gtk_explode and /dev/null differ diff --git a/src/gtk_explode.c b/src/gtk_explode.c deleted file mode 100644 index 8f3bf52..0000000 --- a/src/gtk_explode.c +++ /dev/null @@ -1,40 +0,0 @@ -/* gtk_explode - Test program looking for a possible GTK+ bug - * - * Author: Carl Worth - */ - -#include -#include -#include - -int -main (int argc, char *argv[]) -{ - GtkWidget *window; - GtkWidget *vbox; - GtkWidget *text_view; - - gtk_init (&argc, &argv); - - window = gtk_window_new (GTK_WINDOW_TOPLEVEL); - - gtk_window_set_title (GTK_WINDOW (window), "Ricochet Robot"); - - g_signal_connect (G_OBJECT (window), "destroy", - G_CALLBACK (exit), NULL); - - vbox = gtk_vbox_new (FALSE, 5); - gtk_container_add (GTK_CONTAINER (window), vbox); - { - text_view = gtk_text_view_new (); - gtk_container_add (GTK_CONTAINER (vbox), text_view); - gtk_widget_show (text_view); - } - gtk_widget_show (vbox); - - gtk_widget_show (window); - - gtk_main (); - - return 0; -}