+2008-06-16 Jürg Billeter <j@bitron.ch>
+
+ * gobject/valaccodememberaccessbinding.vala:
+
+ Fix property access for virtual and interface properties
+
2008-06-16 Jaap A. Haitsma <jaap@haitsma.org>
* vapi/packages/gtk+-2.0/gtk+-2.0.metadata:
* vala/valageniescanner.vala:
* vala/valagenietokentype.vala:
- added built in list and dict (HashMap) support with automatic type dependent hash and equal functions
+ added built in list and dict (HashMap) support with automatic type
+ dependent hash and equal functions
2008-06-16 Jürg Billeter <j@bitron.ch>
if (prop.get_accessor != null &&
prop.get_accessor.automatic_body &&
- codegen.current_type_symbol == prop.parent_symbol) {
+ codegen.current_type_symbol == prop.parent_symbol &&
+ prop.base_property == null &&
+ prop.base_interface_property == null) {
CCodeExpression inst;
inst = new CCodeMemberAccess.pointer (pub_inst, "priv");
expr.ccodenode = new CCodeMemberAccess.pointer (inst, prop.field.get_cname());