From 8ff5072d5b16b23e58360b3612f899644da25b2e Mon Sep 17 00:00:00 2001 From: semenov Date: Fri, 30 Jan 2026 09:59:44 +0300 Subject: [PATCH] feat:change cifResponse name --- LibServer/Systems/Parsers/processparser.cpp | 6 +++--- LibServer/Systems/Parsers/processparser.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LibServer/Systems/Parsers/processparser.cpp b/LibServer/Systems/Parsers/processparser.cpp index d082ccc..14cc292 100644 --- a/LibServer/Systems/Parsers/processparser.cpp +++ b/LibServer/Systems/Parsers/processparser.cpp @@ -82,9 +82,9 @@ void ProcessParser::slot_read(ClientHandler *client, QByteArray array) clientBlockAuth(xmlReader,client); } - else if(xmlReader.name() == "CFIObjects") + else if(xmlReader.name() == "CFIObject") { - compareCFIObjects(array,client); + updateCFIList(array,client); } else { @@ -601,7 +601,7 @@ void ProcessParser::clientNotify(QXmlStreamReader &xmlReader,ClientHandler *clie processingSystem->processingClientNotify(client, clientNotify); } -void ProcessParser::compareCFIObjects(QByteArray array,ClientHandler *clientHandler) +void ProcessParser::updateCFIList(QByteArray array,ClientHandler *clientHandler) { processingSystem->processingCFIUpdate(array); } diff --git a/LibServer/Systems/Parsers/processparser.h b/LibServer/Systems/Parsers/processparser.h index ab86997..1c6557b 100644 --- a/LibServer/Systems/Parsers/processparser.h +++ b/LibServer/Systems/Parsers/processparser.h @@ -13,7 +13,7 @@ public: explicit ProcessParser(QObject *parent = nullptr); void initialize(ProcessingSystem *processingSystem); - void compareCFIObjects(QByteArray array,ClientHandler *clientHandler); + void updateCFIList(QByteArray array,ClientHandler *clientHandler); public slots: void slot_read(ClientHandler *client, QByteArray array);