X-Git-Url: https://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/c9d96fcfcf9b74099775a3a260eccdfdc31474c7..77fd2f2194af12f95959506910f3babe842c5f1f:/src/test.gob diff --git a/src/test.gob b/src/test.gob index 36fe62b..432f471 100644 --- a/src/test.gob +++ b/src/test.gob @@ -146,6 +146,14 @@ class Gtk:Weird:Button from Gtk:Button { int h (check > 0)) { return _blah(self,wid,h); } + + private + int + test_handler (self, GtkWidget *w, int h, gpointer data) + { + return -1; + } + /** * gtk_weird_button_bleh2: * @self: foo @@ -158,6 +166,10 @@ class Gtk:Weird:Button from Gtk:Button { signal last INT (POINTER, INT) int bleh2(self, const Gtk:Widget * wid (check null type), int h (check > 0)) { + gtk_signal_connect (GTK_OBJECT (self), + GTK_WEIRD_BUTTON_SIGNAL_BLEH (test_handler), + NULL); + /* testing multiple marshaller support */ return 0; }