aboutsummaryrefslogtreecommitdiff
path: root/src/demoserver.cpp
diff options
context:
space:
mode:
authorTrickyLeifa <date.epoch@gmail.com>2024-05-17 23:54:41 +0200
committerTrickyLeifa <date.epoch@gmail.com>2024-05-18 00:48:55 +0200
commit657145035cd66c18ae777e1272fd5221dddca0ef (patch)
treef9b86a917a2e422c8f93b05f06ebd112f1c700cb /src/demoserver.cpp
parent0500a5426013e97b80cae1de0b19a117cc1bbaa7 (diff)
Reimplemented unit tests, ...
* Reimplemented unit tests and simplified addition of new tests * Minimal support of Qt is now 5.15
Diffstat (limited to 'src/demoserver.cpp')
-rw-r--r--src/demoserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demoserver.cpp b/src/demoserver.cpp
index 22f383a1..bc7cc4bd 100644
--- a/src/demoserver.cpp
+++ b/src/demoserver.cpp
@@ -95,7 +95,7 @@ void DemoServer::recv_data()
{
QString in_data = QString::fromUtf8(client_sock->readAll());
- const QStringList packet_list = in_data.split("%", AOSplitBehaviorFlags::SkipEmptyParts);
+ const QStringList packet_list = in_data.split("%", Qt::SkipEmptyParts);
for (const QString &packet : packet_list)
{
QStringList f_contents;