From c821f53c45b6705e9e5362d331936c1d4280a163 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sun, 30 Oct 2022 09:21:32 +0100 Subject: finish merge --- client/HandleMessage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client') diff --git a/client/HandleMessage.cpp b/client/HandleMessage.cpp index f7f14f4..aa73828 100644 --- a/client/HandleMessage.cpp +++ b/client/HandleMessage.cpp @@ -18,8 +18,8 @@ void HandleMessage::ParseToSQL(QString input) { QSqlQuery queryInsertData; QString output = "INSERT INTO `WSdb`.`tblMain` () VALUES "; - QVector data; - QVector list = input.split("\n"); + QStringList data; + QStringList list = input.split("\n"); for (int i = 0; i < list.size(); ++i) { output += "("; -- cgit v1.2.3