From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7BAF1C433E1 for ; Thu, 20 Aug 2020 17:44:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4E7F2208E4 for ; Thu, 20 Aug 2020 17:44:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1597945491; bh=1LTG7wxuOSyUcGsjQvDYsQUoSMtu88q6TZ40k5pqdzs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=ttgPKb3pE8mpgZoHgtFp3IywZklK7Z1DqacpdoaOodBprEyQylZbo+BhEAzGNgrj9 wU2xa6SAs5bbzVLCfdNdS+aN6yJekzo1trmZFoxMMedG8S9uGbOnKx4nwDdCowIxKB ha13nzkZwN7cnVgp8Cbwa0zswouPDYlDEk0265fc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727833AbgHTRot (ORCPT ); Thu, 20 Aug 2020 13:44:49 -0400 Received: from conuserg-08.nifty.com ([210.131.2.75]:41828 "EHLO conuserg-08.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725977AbgHTRos (ORCPT ); Thu, 20 Aug 2020 13:44:48 -0400 Received: from oscar.flets-west.jp (softbank126090211135.bbtec.net [126.90.211.135]) (authenticated) by conuserg-08.nifty.com with ESMTP id 07KHhX9r017281; Fri, 21 Aug 2020 02:43:34 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com 07KHhX9r017281 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1597945414; bh=WpE+4tvygXdwrHE7yFSYKoEyq34/V7cNx79leKF6YBw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=S8mDpU4tJ8BDgiTAgtgVsAzgt0Y0wc9340fY6mf0rHWaMLmNIBNrZFufwrY7OjfBs f/7aPXtXjvviIez9LgYVHuVyxVxileJiZwJ7Q/r6kW0q57ThP/VHA9EWD6zJv7QdyS SbcXZUteSvBdgFIBQrNpAZf3bFGMvIP7DofTAOIBuQ+xmtSvp9ZjqZpD5V5yoRVKig GPvedf7NpwfjH3ESd/86QVYcM2iPGhiZXmVJlexg+rDPzfrLesKInCpP+JlUHRWpI2 /qUEEfBDDCY4dPgvH+3xo5ZHSePU3inMeF32PH8RTWyKpBlKb7/aO+ln7apBoXQOV4 5A1sSYbN5CwpQ== X-Nifty-SrcIP: [126.90.211.135] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Robert Crawford , Mauro Carvalho Chehab , Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH 2/2] kconfig: qconf: replace depreacated QString::sprintf() with QTextStream Date: Fri, 21 Aug 2020 02:43:28 +0900 Message-Id: <20200820174328.490374-2-masahiroy@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200820174328.490374-1-masahiroy@kernel.org> References: <20200820174328.490374-1-masahiroy@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org QString::sprintf() is deprecated in the latest Qt version, and spawns a lot of warnings: HOSTCXX scripts/kconfig/qconf.o scripts/kconfig/qconf.cc: In member function ‘void ConfigInfoView::menuInfo()’: scripts/kconfig/qconf.cc:1090:61: warning: ‘QString& QString::sprintf(const char*, ...)’ is deprecated: Use asprintf(), arg() or QTextStream instead [-Wdeprecated-declarations] 1090 | head += QString().sprintf("", sym->name); | ^ In file included from /usr/include/qt5/QtGui/qkeysequence.h:44, from /usr/include/qt5/QtWidgets/qaction.h:44, from /usr/include/qt5/QtWidgets/QAction:1, from scripts/kconfig/qconf.cc:7: /usr/include/qt5/QtCore/qstring.h:382:14: note: declared here 382 | QString &sprintf(const char *format, ...) Q_ATTRIBUTE_FORMAT_PRINTF(2, 3); | ^~~~~~~ scripts/kconfig/qconf.cc:1099:60: warning: ‘QString& QString::sprintf(const char*, ...)’ is deprecated: Use asprintf(), arg() or QTextStream instead [-Wdeprecated-declarations] 1099 | head += QString().sprintf("", sym->name); | ^ In file included from /usr/include/qt5/QtGui/qkeysequence.h:44, from /usr/include/qt5/QtWidgets/qaction.h:44, from /usr/include/qt5/QtWidgets/QAction:1, from scripts/kconfig/qconf.cc:7: /usr/include/qt5/QtCore/qstring.h:382:14: note: declared here 382 | QString &sprintf(const char *format, ...) Q_ATTRIBUTE_FORMAT_PRINTF(2, 3); | ^~~~~~~ scripts/kconfig/qconf.cc:1127:90: warning: ‘QString& QString::sprintf(const char*, ...)’ is deprecated: Use asprintf(), arg() or QTextStream instead [-Wdeprecated-declarations] 1127 | debug += QString().sprintf("defined at %s:%d

", _menu->file->name, _menu->lineno); | ^ In file included from /usr/include/qt5/QtGui/qkeysequence.h:44, from /usr/include/qt5/QtWidgets/qaction.h:44, from /usr/include/qt5/QtWidgets/QAction:1, from scripts/kconfig/qconf.cc:7: /usr/include/qt5/QtCore/qstring.h:382:14: note: declared here 382 | QString &sprintf(const char *format, ...) Q_ATTRIBUTE_FORMAT_PRINTF(2, 3); | ^~~~~~~ scripts/kconfig/qconf.cc: In member function ‘QString ConfigInfoView::debug_info(symbol*)’: scripts/kconfig/qconf.cc:1150:68: warning: ‘QString& QString::sprintf(const char*, ...)’ is deprecated: Use asprintf(), arg() or QTextStream instead [-Wdeprecated-declarations] 1150 | debug += QString().sprintf("prompt:
", sym->name); | ^ In file included from /usr/include/qt5/QtGui/qkeysequence.h:44, from /usr/include/qt5/QtWidgets/qaction.h:44, from /usr/include/qt5/QtWidgets/QAction:1, from scripts/kconfig/qconf.cc:7: /usr/include/qt5/QtCore/qstring.h:382:14: note: declared here 382 | QString &sprintf(const char *format, ...) Q_ATTRIBUTE_FORMAT_PRINTF(2, 3); | ^~~~~~~ scripts/kconfig/qconf.cc: In static member function ‘static void ConfigInfoView::expr_print_help(void*, symbol*, const char*)’: scripts/kconfig/qconf.cc:1225:59: warning: ‘QString& QString::sprintf(const char*, ...)’ is deprecated: Use asprintf(), arg() or QTextStream instead [-Wdeprecated-declarations] 1225 | *text += QString().sprintf("", sym->name); | ^ In file included from /usr/include/qt5/QtGui/qkeysequence.h:44, from /usr/include/qt5/QtWidgets/qaction.h:44, from /usr/include/qt5/QtWidgets/QAction:1, from scripts/kconfig/qconf.cc:7: /usr/include/qt5/QtCore/qstring.h:382:14: note: declared here 382 | QString &sprintf(const char *format, ...) Q_ATTRIBUTE_FORMAT_PRINTF(2, 3); | ^~~~~~~ The documentation also says: "Warning: We do not recommend using QString::asprintf() in new Qt code. Instead, consider using QTextStream or arg(), both of which support Unicode strings seamlessly and are type-safe." Do as suggested. Reported-by: Robert Crawford Signed-off-by: Masahiro Yamada --- scripts/kconfig/qconf.cc | 116 +++++++++++++++++++++------------------ 1 file changed, 62 insertions(+), 54 deletions(-) diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 4c5688a845f8..8638785328a7 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1076,75 +1076,80 @@ void ConfigInfoView::symbolInfo(void) void ConfigInfoView::menuInfo(void) { struct symbol* sym; - QString head, debug, help; + QString info; + QTextStream stream(&info); sym = _menu->sym; if (sym) { if (_menu->prompt) { - head += ""; - head += print_filter(_menu->prompt->text); - head += ""; + stream << ""; + stream << print_filter(_menu->prompt->text); + stream << ""; if (sym->name) { - head += " ("; + stream << " ("; if (showDebug()) - head += QString().sprintf("", sym->name); - head += print_filter(sym->name); + stream << "name << "\">"; + stream << print_filter(sym->name); if (showDebug()) - head += ""; - head += ")"; + stream << ""; + stream << ")"; } } else if (sym->name) { - head += ""; + stream << ""; if (showDebug()) - head += QString().sprintf("", sym->name); - head += print_filter(sym->name); + stream << "name << "\">"; + stream << print_filter(sym->name); if (showDebug()) - head += ""; - head += ""; + stream << ""; + stream << ""; } - head += "

"; + stream << "

"; if (showDebug()) - debug = debug_info(sym); + stream << debug_info(sym); + } else if (_menu->prompt) { - head += ""; - head += print_filter(_menu->prompt->text); - head += "

"; + stream << ""; + stream << print_filter(_menu->prompt->text); + stream << "

"; if (showDebug()) { if (_menu->prompt->visible.expr) { - debug += "  dep: "; - expr_print(_menu->prompt->visible.expr, expr_print_help, &debug, E_NONE); - debug += "

"; + stream << "  dep: "; + expr_print(_menu->prompt->visible.expr, + expr_print_help, &stream, E_NONE); + stream << "

"; } } } if (showDebug()) - debug += QString().sprintf("defined at %s:%d

", _menu->file->name, _menu->lineno); + stream << "defined at " << _menu->file->name << ":" + << _menu->lineno << "

"; - setText(head + debug); + setText(info); } QString ConfigInfoView::debug_info(struct symbol *sym) { QString debug; + QTextStream stream(&debug); - debug += "type: "; - debug += print_filter(sym_type_name(sym->type)); + stream << "type: "; + stream << print_filter(sym_type_name(sym->type)); if (sym_is_choice(sym)) - debug += " (choice)"; + stream << " (choice)"; debug += "
"; if (sym->rev_dep.expr) { - debug += "reverse dep: "; - expr_print(sym->rev_dep.expr, expr_print_help, &debug, E_NONE); - debug += "
"; + stream << "reverse dep: "; + expr_print(sym->rev_dep.expr, expr_print_help, &stream, E_NONE); + stream << "
"; } for (struct property *prop = sym->prop; prop; prop = prop->next) { switch (prop->type) { case P_PROMPT: case P_MENU: - debug += QString().sprintf("prompt: ", sym->name); - debug += print_filter(prop->text); - debug += "
"; + stream << "prompt: name << "\">"; + stream << print_filter(prop->text); + stream << "
"; break; case P_DEFAULT: case P_SELECT: @@ -1152,30 +1157,33 @@ QString ConfigInfoView::debug_info(struct symbol *sym) case P_COMMENT: case P_IMPLY: case P_SYMBOL: - debug += prop_get_type_name(prop->type); - debug += ": "; - expr_print(prop->expr, expr_print_help, &debug, E_NONE); - debug += "
"; + stream << prop_get_type_name(prop->type); + stream << ": "; + expr_print(prop->expr, expr_print_help, + &stream, E_NONE); + stream << "
"; break; case P_CHOICE: if (sym_is_choice(sym)) { - debug += "choice: "; - expr_print(prop->expr, expr_print_help, &debug, E_NONE); - debug += "
"; + stream << "choice: "; + expr_print(prop->expr, expr_print_help, + &stream, E_NONE); + stream << "
"; } break; default: - debug += "unknown property: "; - debug += prop_get_type_name(prop->type); - debug += "
"; + stream << "unknown property: "; + stream << prop_get_type_name(prop->type); + stream << "
"; } if (prop->visible.expr) { - debug += "    dep: "; - expr_print(prop->visible.expr, expr_print_help, &debug, E_NONE); - debug += "
"; + stream << "    dep: "; + expr_print(prop->visible.expr, expr_print_help, + &stream, E_NONE); + stream << "
"; } } - debug += "
"; + stream << "
"; return debug; } @@ -1213,15 +1221,15 @@ QString ConfigInfoView::print_filter(const QString &str) void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str) { - QString* text = reinterpret_cast(data); - QString str2 = print_filter(str); + QTextStream *stream = reinterpret_cast(data); if (sym && sym->name && !(sym->flags & SYMBOL_CONST)) { - *text += QString().sprintf("", sym->name); - *text += str2; - *text += ""; - } else - *text += str2; + *stream << "name << "\">"; + *stream << print_filter(str); + *stream << ""; + } else { + *stream << print_filter(str); + } } void ConfigInfoView::clicked(const QUrl &url) -- 2.25.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 49CB8C433DF for ; Thu, 20 Aug 2020 17:45:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2588B208B3 for ; Thu, 20 Aug 2020 17:45:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1597945508; bh=CmfN+na+1NU7RTunOfTAQ7rkaTgJsL087BoPb2agcJs=; h=From:To:Cc:Subject:Date:List-ID:From; b=CCEvY396kKwbhdr8QzGFo36Y08hSq0E/hJxXFkEQxX1ceFBTufzhOLDoqSPGdMSIb f8EmLTwoDOmbymU2AYIEavyyU9PA72nk3SvHwQEp2U9/TMoqb4wmpsuYh0fpu7uDjr 5oD2+Jkl+OTPv2VXYfovh9gCgRxeX9yGPq6ry45c= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725977AbgHTRpH (ORCPT ); Thu, 20 Aug 2020 13:45:07 -0400 Received: from conuserg-08.nifty.com ([210.131.2.75]:42324 "EHLO conuserg-08.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727854AbgHTRpF (ORCPT ); Thu, 20 Aug 2020 13:45:05 -0400 Received: from oscar.flets-west.jp (softbank126090211135.bbtec.net [126.90.211.135]) (authenticated) by conuserg-08.nifty.com with ESMTP id 07KHhX9q017281; Fri, 21 Aug 2020 02:43:33 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com 07KHhX9q017281 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1597945414; bh=yiy7JLyFur4PVxRb7fWremVgVxDABMqosufnldJPcNs=; h=From:To:Cc:Subject:Date:From; b=EuAJcEtD50UrAOPyYALKNJ1fa7qp8R0JbB8aMeFUESB3h1Olh6O3qGIiNT4tVA5Tw +FmW/Ml/RQVCryGkYi8sz18LC0Ch1GTC7IO8gJvgXXcklkzREVznR9/xHw1w0jNvk/ N+dnH4hct2TQ/wh4PthFqg41CGqzlX6bxCH22iIPUyMzrIg/scv11Eb+VJdgK2uTT4 SWnYbv9pTBxKW4Quo1+4z4vrdstyLdt23Awyyng1I83LSAUfO4H6v8hMWVZwuRQ/ng w456RUJMFDf7eRAurRMNHhRIZ6hAbWvTMH+8SUQcRV2X7zygoRz4rsXp4JakTEFD8y 2D7RKApnqa12A== X-Nifty-SrcIP: [126.90.211.135] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Robert Crawford , Mauro Carvalho Chehab , Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH 1/2] kconfig: qconf: remove redundant help in the info view Date: Fri, 21 Aug 2020 02:43:27 +0900 Message-Id: <20200820174328.490374-1-masahiroy@kernel.org> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org The same information is repeated in the info view. Remove the second one. Signed-off-by: Masahiro Yamada --- scripts/kconfig/qconf.cc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 3a8f6251a727..4c5688a845f8 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1106,11 +1106,6 @@ void ConfigInfoView::menuInfo(void) if (showDebug()) debug = debug_info(sym); - - struct gstr help_gstr = str_new(); - menu_get_ext_help(_menu, &help_gstr); - help = print_filter(str_get(&help_gstr)); - str_free(&help_gstr); } else if (_menu->prompt) { head += ""; head += print_filter(_menu->prompt->text); @@ -1126,7 +1121,7 @@ void ConfigInfoView::menuInfo(void) if (showDebug()) debug += QString().sprintf("defined at %s:%d

", _menu->file->name, _menu->lineno); - setText(head + debug + help); + setText(head + debug); } QString ConfigInfoView::debug_info(struct symbol *sym) -- 2.25.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E4FB2C433E1 for ; Fri, 21 Aug 2020 03:45:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C0214208B3 for ; Fri, 21 Aug 2020 03:45:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1597981510; bh=EurlpFZvEALku2yAmqdxOL64IyitGFPQ6qKy1OzRhHI=; h=References:In-Reply-To:From:Date:Subject:To:Cc:List-ID:From; b=pZLHHvcXpE1zzMZKjtBJnE5G8D8wPClA0oAOMq64wvwU9Q9vr4wFLVY8XrmxPMH4T QXLfVJPAzYs4/M33bYPn8ommiIieP4PzT5UbsChhKF5HnF88a15Jop4WYFMgdb+i41 6bS/UyNS/E4sKW7eRf8a3aDtDdiOHdxO0KI+1tBU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727838AbgHUDov (ORCPT ); Thu, 20 Aug 2020 23:44:51 -0400 Received: from conssluserg-02.nifty.com ([210.131.2.81]:25396 "EHLO conssluserg-02.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727090AbgHUDov (ORCPT ); Thu, 20 Aug 2020 23:44:51 -0400 Received: from mail-ua1-f53.google.com (mail-ua1-f53.google.com [209.85.222.53]) (authenticated) by conssluserg-02.nifty.com with ESMTP id 07L3iYNR006929; Fri, 21 Aug 2020 12:44:35 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conssluserg-02.nifty.com 07L3iYNR006929 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1597981475; bh=NcTV0rU4lqUzCGeSvj+IhR2DmoMnjOnTSqkCOLXjihI=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=CnIvqsKvc0gf0dxrbxdAc+BzYbQk4qOqDIIFTsP4aGjhh+9mcR3pMU+Qpmx506QgA bI3Wyk2Y1ClTvdt38adMcLST/8OJKx0UkBLvFEmGnCn+BV2Cx7/MrvqfOZXNg4+inC +PofSWTJfNgvEwNczWxoW6om1BM3DFnZMdfY/f6U//78Tm2Tb4ZvYynONHFsklAzJ0 QF/n2XLyefgMFhAquUgmEAJeQQ2ITbvSlquE8BMvEQhNJmz7syrmGYPAIVrz8uAAWt /3fErwUqcBsCD2l6jb4Rjq4G2ZnLsssPfVTkUj1jr6mkzQyFORUBL07YeQkE1yqlSV 9pvi0Rk0bJ2aQ== X-Nifty-SrcIP: [209.85.222.53] Received: by mail-ua1-f53.google.com with SMTP id d20so160159ual.13; Thu, 20 Aug 2020 20:44:35 -0700 (PDT) X-Gm-Message-State: AOAM531AIdH1jVFcJhWkFrBUSei9Ltt90ia/FiU5/ROHjFNE3i/7VAXI iwCUjy4oVsh14ECO70erLFOhORmY0aiwH8yp2os= X-Google-Smtp-Source: ABdhPJwyVtkEj0z6jbnZ/ZYmrdRit6XeU5c258QdTKoyURxGnPxMSmgPltgrdQ/tb1o3/w8aLnbUYHZgVFIi1z3jZz0= X-Received: by 2002:ab0:108:: with SMTP id 8mr452069uak.25.1597981474093; Thu, 20 Aug 2020 20:44:34 -0700 (PDT) MIME-Version: 1.0 References: <20200820174328.490374-1-masahiroy@kernel.org> <20200820174328.490374-2-masahiroy@kernel.org> In-Reply-To: <20200820174328.490374-2-masahiroy@kernel.org> From: Masahiro Yamada Date: Fri, 21 Aug 2020 12:43:57 +0900 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH 2/2] kconfig: qconf: replace depreacated QString::sprintf() with QTextStream To: Linux Kbuild mailing list Cc: Robert Crawford , Mauro Carvalho Chehab , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org I will fix the typo in the subject. "depreacated" -> "deprecated" -- Best Regards Masahiro Yamada