2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valastruct.vala:
Fix struct base type error message, patch by Carlos Cadete,
fixes bug 567366
svn path=/trunk/; revision=2357
+2009-01-16 Jürg Billeter <j@bitron.ch>
+
+ * vala/valastruct.vala:
+
+ Fix struct base type error message, patch by Carlos Cadete,
+ fixes bug 567366
+
2009-01-16 Jürg Billeter <j@bitron.ch>
* vapi/glib-2.0.vapi:
if (!(type is StructValueType)) {
error = true;
- Report.error (source_reference, "The base type `%s` of value type `%s` is not a struct".printf (type.data_type.to_string (), get_full_name ()));
+ Report.error (source_reference, "The base type `%s` of struct `%s` is not a struct".printf (type.to_string (), get_full_name ()));
return false;
}
}