summary refs log tree commit diff stats
path: root/tests/rodfiles/gtkex1.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rodfiles/gtkex1.nim')
-rw-r--r--tests/rodfiles/gtkex1.nim14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/rodfiles/gtkex1.nim b/tests/rodfiles/gtkex1.nim
deleted file mode 100644
index 156ba5322..000000000
--- a/tests/rodfiles/gtkex1.nim
+++ /dev/null
@@ -1,14 +0,0 @@
-import
-  cairo, glib2, gtk2
-
-proc destroy(widget: pWidget, data: pgpointer) {.cdecl.} =
-  main_quit()
-
-var
-  window: pWidget
-nimrod_init()
-window = window_new(WINDOW_TOPLEVEL)
-discard signal_connect(window, "destroy",
-                       SIGNAL_FUNC(gtkex1.destroy), nil)
-show(window)
-main()