diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-18 17:37:43 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-18 17:37:43 +0900 |
commit | 959b2d023d37713cefaee049b09e09507107e4b0 (patch) | |
tree | 954042449b647c928e781dc64b561245ef434bb5 | |
parent | ac944a40f12c4aff06af8c01fa36c63643159919 (diff) | |
download | libquotient-959b2d023d37713cefaee049b09e09507107e4b0.tar.gz libquotient-959b2d023d37713cefaee049b09e09507107e4b0.zip |
Typo fix
-rw-r--r-- | room.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -563,7 +563,7 @@ static void linkifyUrls(QString& htmlEscapedText) htmlEscapedText.replace(EmailAddressRegExp, QStringLiteral(R"(<a href="mailto:\2">\1\2</a>)")); htmlEscapedText.replace(FullUrlRegExp, - QStringLiteral(R"(<a href="\1">\1</a>")")); + QStringLiteral(R"(<a href="\1">\1</a>)")); } QString Room::prettyPrint(const QString& plainText) const |