Received: by 2002:a05:6a10:9e8c:0:0:0:0 with SMTP id y12csp504362pxx; Thu, 29 Oct 2020 07:44:29 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxRdJy3vN3VHZCuZR/Nkdq/QMVEeFRhzI9o/MRk88Kp+fGf+y1DtVAlMH8sWf0AquLPgBG0 X-Received: by 2002:a17:906:1959:: with SMTP id b25mr4595287eje.283.1603982669334; Thu, 29 Oct 2020 07:44:29 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1603982669; cv=none; d=google.com; s=arc-20160816; b=PSpZ3hkO0FzkxbSBp7i348Ow8kjbT9+4kD/Cm2beZf0GEupt1S+a9XprmLuNsmqf0O 4V9G2b99gmzy293qiXux7WuO7b0T+VIaDtDnEqAeTtmD+vc+i5z6Gyb3KrgAgNEgtLlA Tdpu5A7OezNGE0ILM/GJHZkGQzo2g2Hx2zbSYKZuhdnqbx9XG6bUuBvfXeqB0wvHvgG3 CFe3dNILfr793bUaOa3hCYtTEWQjDoCPxGKP8bPlzq40Thm9+Aw2WV4J4hac/WtrdGxS jvwscnmtCkAMnbRY3HhMGAV/ltF5lZrToi0ostX9SVoWxznGEtynE5VkSSn/2I8blMVF ACTQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:organization:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=xkUuF/G3eQDYCN8txu+LgpHBjGFoNiDkBSlprS+dzoc=; b=drIPQfirbSOHxR1UJWGCC8yyLL+owSVS/0hRiv/0Y0iU2u+oZ/0/ZZ0hfDVhm3Cubl KfYmkzTExA6ZZgzh4J4rbZDDBHuXkTshtC5J7mAqvc/iUnlYoeT3lep73pbrN0QgXNSn 6Brxn4Nyt500vtvQMJ7EVE256LzeYMEa4VhBcIjLlQjZZdapSXXCTAK3jbPVj8jiUhSd /caS7wzMZzA1SvyvNA96mMxTMloZpedK38sui+DKXzmJDoWU6svgzd411KXAGzRuMgyB FNm37q9Fssia5YTgpcRlmiFT7jpxO6v0wDK5iq6iH63qGImj77O3kZUkki4vMtQWlt5v 6Iew== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id k1si2729040edf.460.2020.10.29.07.44.06; Thu, 29 Oct 2020 07:44:29 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727844AbgJ2Omq (ORCPT + 99 others); Thu, 29 Oct 2020 10:42:46 -0400 Received: from codesynthesis.com ([142.44.161.217]:46424 "EHLO codesynthesis.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726633AbgJ2Omh (ORCPT ); Thu, 29 Oct 2020 10:42:37 -0400 X-Greylist: delayed 621 seconds by postgrey-1.27 at vger.kernel.org; Thu, 29 Oct 2020 10:42:36 EDT Received: from brak.codesynthesis.com (unknown [105.184.207.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by codesynthesis.com (Postfix) with ESMTPSA id A7B225F6C2; Thu, 29 Oct 2020 14:32:14 +0000 (UTC) Received: by brak.codesynthesis.com (Postfix, from userid 1000) id 952C71A800C4; Thu, 29 Oct 2020 16:32:07 +0200 (SAST) Date: Thu, 29 Oct 2020 16:32:07 +0200 From: Boris Kolpackov To: Masahiro Yamada Cc: linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/3] kconfig: qconf: convert to Qt5 new signal/slot connection syntax Message-ID: References: <20201024123841.1201922-1-masahiroy@kernel.org> <20201024123841.1201922-3-masahiroy@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201024123841.1201922-3-masahiroy@kernel.org> Organization: Code Synthesis User-Agent: Mutt/1.5.24 (2015-08-30) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Masahiro Yamada writes: > Now that the Qt4 support was dropped, we can use the new connection > syntax supported by Qt5. It provides compile-time checking of the > validity of the connection. > > Previously, the connection between signals and slots were checked > only run-time. > > Commit d85de3399f97 ("kconfig: qconf: fix signal connection to invalid > slots") fixed wrong slots. > > This change makes it possible to catch such mistakes easily. > > Signed-off-by: Masahiro Yamada Tested-by: Boris Kolpackov