]> git.draconx.ca Git - gob-dx.git/blobdiff - src/test.gob
Release 2.0.10
[gob-dx.git] / src / test.gob
index a885f4fc7fadd844a6d7958d6db5293f33e43f8e..b900902b9ec945a5544d5a50a7a325d09fd14320 100644 (file)
@@ -124,6 +124,10 @@ class Test:Object from G:Object
                unrefwith g_object_unref;
        argument POINTER testingobj objectlink;
 
+       public Test:Object * testingobjllll
+               unrefwith gtk_widget_destroy;
+       argument POINTER testingobjllll objectlink;
+
        public Test:Object * testingobjfoo
                unref { if (VAR) g_object_unref (VAR); };
        argument POINTER testingobjfoo objectlink;
@@ -221,6 +225,13 @@ class Test:Object from G:Object
                               boxed_type=PACKAGE_TYPE_BOXED,
                               link);
 
+       private char ov_prop;
+       property CHAR ov_prop
+               (export,
+                override)
+               set { self->_priv->ov_prop = g_value_get_char (VAL); }
+               get { g_value_set_char (VAL, self->_priv->ov_prop); };
+
 
        private int j;
        public GObject * h;