QRegExp to QRegularExpression and updated README (#368)

* QRegExp to QRegularExpression and updated README

One instance of QRegExp made the compiler crash when trying to build Akashi. Also, the README.md build instructions were outdated, new ones were provided to me by Salanto.

* Appease clang

---------

Co-authored-by: Salanto <62221668+Salanto@users.noreply.github.com>
This commit is contained in:
HolyMan 2024-07-17 19:32:56 -04:00 committed by GitHub
parent 3459486dea
commit d2b378b005
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -17,10 +17,10 @@ Requires Qt >= 5.10, and Qt websockets
**Ubuntu 20.04/22.04** - Ubuntu 18.04 or older are not supported. **Ubuntu 20.04/22.04** - Ubuntu 18.04 or older are not supported.
``` ```
sudo apt install build-essential qt5-default libqt5websockets5-dev sudo apt install build-essential qtbase5-dev qt5-qmake qttools5-dev qttools5-dev-tools libqt5websockets5-dev
git clone https://github.com/AttorneyOnline/akashi git clone https://github.com/AttorneyOnline/akashi
cd akashi cd akashi
qmake && make qmake project-akashi.pro && make
``` ```
# Contributors # Contributors

View File

@ -4,6 +4,7 @@
#include "server.h" #include "server.h"
#include <QDebug> #include <QDebug>
#include <QRegularExpression>
PacketMS::PacketMS(QStringList &contents) : PacketMS::PacketMS(QStringList &contents) :
AOPacket(contents) AOPacket(contents)
@ -153,7 +154,7 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const
} }
if (client.m_is_disemvoweled) { if (client.m_is_disemvoweled) {
QString l_disemvoweled_message = l_incoming_msg.remove(QRegExp("[AEIOUaeiou]")); QString l_disemvoweled_message = l_incoming_msg.remove(QRegularExpression("[AEIOUaeiou]"));
l_incoming_msg = l_disemvoweled_message; l_incoming_msg = l_disemvoweled_message;
} }