John - wrote:
> Now I get this error :
> 
> ERROR:test.vala:27:test_window_on_testButton_activate: assertion failed: 
> (self->priv->builder != NULL)
> Aborted (core dumped)

I guess your instance of 'TestWindow' (Vala: 'this' / C: 'self') is already 
freed.
Try to assign it to a variable that does not get out of scope.

Instead of
  new TestWindow ();

do:
  test_window = new TestWindow ();


Best regards,

Frederik
_______________________________________________
Vala-list mailing list
Vala-list@gnome.org
http://mail.gnome.org/mailman/listinfo/vala-list

Reply via email to