diff options
author | Araq <rumpf_a@web.de> | 2016-08-16 20:04:27 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2016-08-16 20:04:27 +0200 |
commit | a13cb26c4084d83df1d4627e5b842c050ed69177 (patch) | |
tree | 87d439fcb03c2c2bcf60e895be033028ca646e9f /tests/rodfiles/gtkex1.nim | |
parent | 8fca04027fe03109657b753b95ded86d2f65e6f3 (diff) | |
download | Nim-a13cb26c4084d83df1d4627e5b842c050ed69177.tar.gz |
next steps in getting symbol files to work again
Diffstat (limited to 'tests/rodfiles/gtkex1.nim')
-rw-r--r-- | tests/rodfiles/gtkex1.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/rodfiles/gtkex1.nim b/tests/rodfiles/gtkex1.nim index 156ba5322..50779cb9e 100644 --- a/tests/rodfiles/gtkex1.nim +++ b/tests/rodfiles/gtkex1.nim @@ -1,12 +1,12 @@ import cairo, glib2, gtk2 -proc destroy(widget: pWidget, data: pgpointer) {.cdecl.} = +proc destroy(widget: PWidget, data: Pgpointer) {.cdecl.} = main_quit() var - window: pWidget -nimrod_init() + window: PWidget +nim_init() window = window_new(WINDOW_TOPLEVEL) discard signal_connect(window, "destroy", SIGNAL_FUNC(gtkex1.destroy), nil) |