1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #3034

Zetok Zalbavar (1):
      fix: remove unnecessary qDebug call
This commit is contained in:
sudden6 2016-03-22 14:05:58 +01:00
commit b6ae3d02d6
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

@ -210,8 +210,6 @@ QString ChatMessage::detectMarkdown(const QString &str)
QString htmledSnippet;
qDebug() << "snipCheck: " << snipCheck << " out: " << out << " snipLength: " << snippet.toHtmlEscaped().length() << " outLength: " << out.toHtmlEscaped().length();
// Only parse if surrounded by spaces, newline(s) and/or beginning/end of line
if ((snipCheck.startsWith(' ') || snipCheck.startsWith('>') || offset == 0) && ((snipCheck.endsWith(' ') || snipCheck.endsWith('<')) || offset + snippet.toHtmlEscaped().length() == out.toHtmlEscaped().length()))
{