X-Git-Url: https://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/d52e64e92557f0b6d7704077ec175c88fa7ca243..8445442abc02fc325a9ce228759403113583818c:/src/test.gob diff --git a/src/test.gob b/src/test.gob index 25e2e8f..9c981eb 100644 --- a/src/test.gob +++ b/src/test.gob @@ -168,7 +168,9 @@ class Test:Object from /*G:Object*/ Gtk:Container private char a_property; property CHAR a_property - (nick = _("Nick"), + ( + name="a-property", + nick = _("Nick"), blurb = _("Blurb"), minimum = 'a', maximum = 'Z', @@ -257,7 +259,9 @@ class Test:Object from /*G:Object*/ Gtk:Container init(object) { object->i=0; } - class_init(klass); + class_init(klass) { + /*IN CLASS INIT */ + } /** * new: @@ -292,7 +296,7 @@ class Test:Object from /*G:Object*/ Gtk:Container * * Returns: new object **/ - signal last STRING (POINTER, INT) + signal last STRING "bleh-signal" (POINTER, INT) char * bleh(self, G:Object * wid (check null type), int h (check > 0)) { return self_blah(self,wid,h) > 0 ? g_strdup ("foo") : g_strdup ("bar");