2008-12-19 Jürg Billeter <j@bitron.ch>
* gobject/valaccodebasemodule.vala:
Update wording for error message when trying to duplicate
non-reference counted object
svn path=/trunk/; revision=2219
+2008-12-19 Jürg Billeter <j@bitron.ch>
+
+ * gobject/valaccodebasemodule.vala:
+
+ Update wording for error message when trying to duplicate
+ non-reference counted object
+
2008-12-19 Jürg Billeter <j@bitron.ch>
* vala/valaformalparameter.vala:
}
} else {
// duplicating non-reference counted objects may cause side-effects (and performance issues)
- Report.error (source_reference, "duplicating %s instance, use weak variable or explicitly invoke copy method".printf (type.data_type.name));
+ Report.error (source_reference, "duplicating %s instance, use unowned variable or explicitly invoke copy method".printf (type.data_type.name));
return null;
}