From 5779d036c511fb22fd73c3e090bd33a5be90be38 Mon Sep 17 00:00:00 2001 From: Sergey Levin Date: Thu, 3 Nov 2022 15:20:13 +0300 Subject: [PATCH] Wizard: Fix tooltip translation Change-Id: I232a7887f41cd8af54567e1be28ad60aa7a23c95 Reviewed-by: Eike Ziller --- src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp index 8992fd4ab96..0b67459fafd 100644 --- a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp +++ b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp @@ -181,7 +181,7 @@ JsonFieldPage::Field *JsonFieldPage::Field::parse(const QVariant &input, QString } data->setTexts(name, JsonWizardFactory::localizedString(consumeValue(tmp, DISPLAY_NAME_KEY).toString()), - consumeValue(tmp, TOOLTIP_KEY).toString()); + JsonWizardFactory::localizedString(consumeValue(tmp, TOOLTIP_KEY).toString())); data->setVisibleExpression(consumeValue(tmp, VISIBLE_KEY, true)); data->setEnabledExpression(consumeValue(tmp, ENABLED_KEY, true));