Hi Sascha,

> doctype = cboDocType.get_active_text;

You are assigning a function (a delegate, means a pointer to a function)
to an string, thats not possible, use

  doctype = cboDocType.get_active_text();

instead (parantheses on right side) to CALL the get_active_text()
function, which returns a string.

_______________________________________________
vala-list mailing list
vala-list@gnome.org
https://mail.gnome.org/mailman/listinfo/vala-list

Reply via email to