]> git.draconx.ca Git - gob-dx.git/blobdiff - src/test.gob
Release 1.0.6
[gob-dx.git] / src / test.gob
index 36fe62b1f94bc876903248163234dacee4244bc0..432f4716c81d6a906794b33256834a93f0e2336d 100644 (file)
@@ -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;
        }