Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Murmele committed May 22, 2022
1 parent cb742e0 commit 3f3079c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dialogs/AboutDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const QString kTextFmt =
"contributors</p><p> If you have a question that might benefit the "
"community, consider asking it on <a href='%5'>Stack Overflow</a> by "
"including 'gittyup' in the tags. Otherwise, contact us at "
"<a href='%6'>%6</a> or ask in the matrix channel: <a href='%7'>%7</a>";
"<a href='%6'>%6</a> or ask in the matrix channel: <a href='%7'>%7</a>";

const QString kStyleSheet = "h3 {"
" text-decoration: underline"
Expand Down Expand Up @@ -88,8 +88,8 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent) {
QDateTime dateTime = QDateTime::fromString(GITTYUP_BUILD_DATE, Qt::ISODate);
QString date =
dateTime.date().toString(QLocale().dateFormat(QLocale::LongFormat));
QString text =
kTextFmt.arg(name, version, date, revision, kUrl, kIssueTracker, kUrlMatrix);
QString text = kTextFmt.arg(name, version, date, revision, kUrl,
kIssueTracker, kUrlMatrix);
QLabel *label = new QLabel(text, this);
label->setWordWrap(true);
label->setTextInteractionFlags(kTextFlags);
Expand Down

0 comments on commit 3f3079c

Please sign in to comment.