From: Luca Bruno Date: Wed, 5 Jun 2013 20:31:14 +0000 (+0200) Subject: Fix broken parens introduced by previous commits X-Git-Tag: 0.21.1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25ca668676c1a89a2bb894dd4fef194f2aa10693;p=thirdparty%2Fvala.git Fix broken parens introduced by previous commits --- diff --git a/codegen/valagasyncmodule.vala b/codegen/valagasyncmodule.vala index 068392ef2..1d18369d4 100644 --- a/codegen/valagasyncmodule.vala +++ b/codegen/valagasyncmodule.vala @@ -25,7 +25,7 @@ using GLib; public class Vala.GAsyncModule : GtkModule { bool needs_dummy_object (Method m) { var t = m.parent_symbol as TypeSymbol; - return t == null || !t.is_subtype_of (gobject_type) || m is CreationMethod || m.binding != MemberBinding.INSTANCE + return (t == null || !t.is_subtype_of (gobject_type) || m is CreationMethod || m.binding != MemberBinding.INSTANCE) && !context.require_glib_version (2, 20); }