summaryrefslogtreecommitdiffstats
path: root/src/display/testnr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/display/testnr.cpp')
-rw-r--r--src/display/testnr.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/display/testnr.cpp b/src/display/testnr.cpp
deleted file mode 100644
index 3a3478d28..000000000
--- a/src/display/testnr.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <gtk/gtk.h>
-#include "sp-arena.h"
-
-int
-main (int argc, char ** argv)
-{
- GtkWidget * w, * c;
-
- gtk_init (&argc, &argv);
-
- w = gtk_window_new (GTK_WINDOW_TOPLEVEL);
-
- c = sp_arena_new ();
- gtk_widget_show (c);
-
- gtk_container_add (GTK_CONTAINER (w), c);
-
- gtk_widget_show (w);
-
- gtk_main ();
-
- return 0;
-}
-