Merge remote-tracking branch 'origin/7.0'

Change-Id: I1574de12ff58be4fdcffd29a5abdbdc8704b0453
This commit is contained in:
Eike Ziller
2022-04-25 10:27:25 +02:00
3 changed files with 26 additions and 20 deletions

View File

@@ -73,8 +73,8 @@ VersionDialog::VersionDialog(QWidget *parent)
const QString additionalInfo =
QStringList(Utils::transform(additionalInfoLines, &QString::toHtmlEscaped)).join(br);
const QString description = tr(
"<h3>%1</h3>"
const QString description
= tr("<h3>%1</h3>"
"%2<br/>"
"%3"
"%4"
@@ -91,7 +91,11 @@ VersionDialog::VersionDialog(QWidget *parent)
ideRev,
additionalInfo.isEmpty() ? QString() : br + additionalInfo + br,
QLatin1String(Constants::IDE_YEAR),
QLatin1String(Constants::IDE_AUTHOR));
QLatin1String(Constants::IDE_AUTHOR))
+ "<br/>"
+ tr("The Qt logo as well as Qt®, Qt Quick®, Built with Qt®, Boot to Qt®, "
"Qt Quick Compiler®, Qt Enterprise®, Qt Mobile® and Qt Embedded® are "
"registered trademarks of The Qt Company Ltd.");
QLabel *copyRightLabel = new QLabel(description);
copyRightLabel->setWordWrap(true);

View File

@@ -27,7 +27,9 @@
#include <QLineEdit>
QT_BEGIN_NAMESPACE
class QToolButton;
QT_END_NAMESPACE
namespace QmlDesigner {