From: Rico Tzschichholz Date: Mon, 18 Jan 2021 14:38:51 +0000 (+0100) Subject: vala: Set this_parameter of method representing property accessor X-Git-Tag: 0.51.1~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01b2de5f8c797f27d6dc6a4cc00a51593e9710fd;p=thirdparty%2Fvala.git vala: Set this_parameter of method representing property accessor --- diff --git a/vala/valapropertyaccessor.vala b/vala/valapropertyaccessor.vala index adcb628db..0c1bf50b3 100644 --- a/vala/valapropertyaccessor.vala +++ b/vala/valapropertyaccessor.vala @@ -133,6 +133,7 @@ public class Vala.PropertyAccessor : Subroutine { m.binding = prop.binding; m.is_abstract = prop.is_abstract; m.is_virtual = prop.is_virtual; + m.this_parameter = prop.this_parameter; } return m;