diff options
| author | NielsCoding <101340368+NielsCoding@users.noreply.github.com> | 2022-10-30 10:16:35 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-30 10:16:35 +0100 | 
| commit | af008eb04e3a5705eec63839abc5791454e763ce (patch) | |
| tree | 5a657efb00a2f57400b730c9e7c86d27e40615a3 /client/HandleMessage.cpp | |
| parent | eb10a1a6dc03d83284788128d3f77ff57852c3c6 (diff) | |
| parent | c821f53c45b6705e9e5362d331936c1d4280a163 (diff) | |
Merge branch 'lonkaars:master' into test
Diffstat (limited to 'client/HandleMessage.cpp')
| -rw-r--r-- | client/HandleMessage.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| 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<QString> data; -    QVector<QString> list = input.split("\n"); +    QStringList data; +    QStringList list = input.split("\n");      for (int i = 0; i < list.size(); ++i) {          output += "("; |