Merge pull request #8107 from lioncash/string

DolphinQt/AboutDialog: Remove unnecessary QStringLiteral
This commit is contained in:
Léo Lam 2019-05-21 18:44:37 +02:00 committed by GitHub
commit 57fbf1cd6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -16,10 +16,11 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent)
setWindowTitle(tr("About Dolphin")); setWindowTitle(tr("About Dolphin"));
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
QString text = QStringLiteral(""); const QString small =
QString small = QStringLiteral("<p style='margin-top:0; margin-bottom:0; font-size:small;'>"); QStringLiteral("<p style='margin-top:0; margin-bottom:0; font-size:small;'>");
QString medium = QStringLiteral("<p style='margin-top:15px;'>"); const QString medium = QStringLiteral("<p style='margin-top:15px;'>");
QString text;
text.append(QStringLiteral("<p style='font-size:38pt; font-weight:400; margin-bottom:0;'>") + text.append(QStringLiteral("<p style='font-size:38pt; font-weight:400; margin-bottom:0;'>") +
tr("Dolphin") + QStringLiteral("</p>")); tr("Dolphin") + QStringLiteral("</p>"));
text.append(QStringLiteral("<p style='font-size:18pt; margin-top:0;'>%1</p>") text.append(QStringLiteral("<p style='font-size:18pt; margin-top:0;'>%1</p>")