]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix broken parens introduced by previous commits
authorLuca Bruno <lucabru@src.gnome.org>
Wed, 5 Jun 2013 20:31:14 +0000 (22:31 +0200)
committerLuca Bruno <lucabru@src.gnome.org>
Wed, 5 Jun 2013 20:31:14 +0000 (22:31 +0200)
codegen/valagasyncmodule.vala

index 068392ef29bc4ff57ecb72ed0271abb25897e28f..1d18369d45fd1e37afefe5c0288c9435a4e6d4c8 100644 (file)
@@ -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);
        }