Make QString a const.

This commit is contained in:
Pyraqq 2021-07-08 21:02:44 +02:00
parent 2a229541ef
commit 6071a6242e
2 changed files with 3 additions and 5 deletions

View File

@ -1912,8 +1912,7 @@ class AOClient : public QObject {
*
* @return True if it contains '<' or '>' symbols, otherwise false.
*/
bool checkTestimonySymbols(QString message);
bool checkTestimonySymbols(const QString& message);
///@}
/**

View File

@ -77,12 +77,11 @@ void AOClient::clearTestimony()
area->clearTestimony();
}
bool AOClient::checkTestimonySymbols(QString message)
bool AOClient::checkTestimonySymbols(const QString& message)
{
if (message.contains('>') || message.contains('<')) {
sendServerMessage("Unable to add statements containing '>' or '<'.");
return true;
}
else
return false;
return false;
}