From 8621de12c043a7a7d959dbca9b70a5fa02c34781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Thu, 14 Aug 2008 21:22:53 +0000 Subject: Don't derive from GObject in libvala where not necessary to improve MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2008-08-14 Jürg Billeter Don't derive from GObject in libvala where not necessary to improve compilation performance svn path=/trunk/; revision=1757 --- vala/valalockstatement.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vala/valalockstatement.vala') diff --git a/vala/valalockstatement.vala b/vala/valalockstatement.vala index 9ab2cfc4d..c20763168 100644 --- a/vala/valalockstatement.vala +++ b/vala/valalockstatement.vala @@ -29,12 +29,12 @@ public class Vala.LockStatement : CodeNode, Statement { /** * Expression representing the resource to be locked. */ - public Expression resource { get; set construct; } + public Expression resource { get; set; } /** * The statement during its execution the resource is locked. */ - public Block body { get; set construct; } + public Block body { get; set; } public LockStatement (Expression resource, Block body, SourceReference? source_reference = null) { this.body = body; -- cgit v1.2.1