From bcd8888c1f5adb0088ca095b9e9a0e2320c915bf Mon Sep 17 00:00:00 2001 From: feiyangqingyun Date: Tue, 8 Jun 2021 19:02:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- comtool/api/appconfig.cpp | 2 +- comtool/form/frmcomtool.cpp | 2 +- comtool/main.cpp | 2 +- netserver/api/appconfig.cpp | 2 +- netserver/api/tcpserver1.cpp | 2 +- netserver/api/tcpserver2.cpp | 2 +- netserver/form/frmmain.cpp | 2 +- netserver/main.cpp | 2 +- nettool/api/appconfig.cpp | 2 +- nettool/api/tcpclient.cpp | 2 +- nettool/api/tcpserver.cpp | 2 +- nettool/api/webclient.cpp | 2 +- nettool/api/webserver.cpp | 2 +- nettool/form/frmmain.cpp | 2 +- nettool/form/frmtcpclient.cpp | 2 +- nettool/form/frmtcpserver.cpp | 2 +- nettool/form/frmudpclient.cpp | 2 +- nettool/form/frmudpserver.cpp | 2 +- nettool/form/frmwebclient.cpp | 2 +- nettool/form/frmwebserver.cpp | 2 +- nettool/main.cpp | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/comtool/api/appconfig.cpp b/comtool/api/appconfig.cpp index 8d0cebf..faef55c 100644 --- a/comtool/api/appconfig.cpp +++ b/comtool/api/appconfig.cpp @@ -1,5 +1,5 @@ #include "appconfig.h" -#include "quiwidget.h" +#include "quihelper.h" QString AppConfig::ConfigFile = "config.ini"; QString AppConfig::SendFileName = "send.txt"; diff --git a/comtool/form/frmcomtool.cpp b/comtool/form/frmcomtool.cpp index e5a9574..d5861b3 100644 --- a/comtool/form/frmcomtool.cpp +++ b/comtool/form/frmcomtool.cpp @@ -1,6 +1,6 @@ #include "frmcomtool.h" #include "ui_frmcomtool.h" -#include "quiwidget.h" +#include "quihelper.h" frmComTool::frmComTool(QWidget *parent) : QWidget(parent), ui(new Ui::frmComTool) { diff --git a/comtool/main.cpp b/comtool/main.cpp index 1e367bd..7ba939c 100644 --- a/comtool/main.cpp +++ b/comtool/main.cpp @@ -1,5 +1,5 @@ #include "frmcomtool.h" -#include "quiwidget.h" +#include "quihelper.h" int main(int argc, char *argv[]) { diff --git a/netserver/api/appconfig.cpp b/netserver/api/appconfig.cpp index 4adc872..d23272b 100644 --- a/netserver/api/appconfig.cpp +++ b/netserver/api/appconfig.cpp @@ -1,5 +1,5 @@ #include "appconfig.h" -#include "quiwidget.h" +#include "quihelper.h" QString AppConfig::ConfigFile = "config.ini"; diff --git a/netserver/api/tcpserver1.cpp b/netserver/api/tcpserver1.cpp index b8545e5..9835e00 100644 --- a/netserver/api/tcpserver1.cpp +++ b/netserver/api/tcpserver1.cpp @@ -1,5 +1,5 @@ #include "tcpserver1.h" -#include "quiwidget.h" +#include "quihelper.h" TcpClient1::TcpClient1(QObject *parent) : QTcpSocket(parent) { diff --git a/netserver/api/tcpserver2.cpp b/netserver/api/tcpserver2.cpp index e4f55ba..9cd8a24 100644 --- a/netserver/api/tcpserver2.cpp +++ b/netserver/api/tcpserver2.cpp @@ -1,5 +1,5 @@ #include "tcpserver2.h" -#include "quiwidget.h" +#include "quihelper.h" TcpClient2::TcpClient2(QObject *parent) : QTcpSocket(parent) { diff --git a/netserver/form/frmmain.cpp b/netserver/form/frmmain.cpp index d96a837..1518348 100644 --- a/netserver/form/frmmain.cpp +++ b/netserver/form/frmmain.cpp @@ -1,6 +1,6 @@ #include "frmmain.h" #include "ui_frmmain.h" -#include "quiwidget.h" +#include "quihelper.h" frmMain::frmMain(QWidget *parent) : QWidget(parent), ui(new Ui::frmMain) { diff --git a/netserver/main.cpp b/netserver/main.cpp index 653cad7..8c167af 100644 --- a/netserver/main.cpp +++ b/netserver/main.cpp @@ -1,5 +1,5 @@ #include "frmmain.h" -#include "quiwidget.h" +#include "quihelper.h" int main(int argc, char *argv[]) { diff --git a/nettool/api/appconfig.cpp b/nettool/api/appconfig.cpp index 17d1260..75f370c 100644 --- a/nettool/api/appconfig.cpp +++ b/nettool/api/appconfig.cpp @@ -1,5 +1,5 @@ #include "appconfig.h" -#include "quiwidget.h" +#include "quihelper.h" QString AppConfig::ConfigFile = "config.ini"; QString AppConfig::SendFileName = "send.txt"; diff --git a/nettool/api/tcpclient.cpp b/nettool/api/tcpclient.cpp index 1d72673..335b314 100644 --- a/nettool/api/tcpclient.cpp +++ b/nettool/api/tcpclient.cpp @@ -1,5 +1,5 @@ #include "tcpclient.h" -#include "quiwidget.h" +#include "quihelper.h" TcpClient::TcpClient(QTcpSocket *socket, QObject *parent) : QObject(parent) { diff --git a/nettool/api/tcpserver.cpp b/nettool/api/tcpserver.cpp index 1f77ea1..32f641a 100644 --- a/nettool/api/tcpserver.cpp +++ b/nettool/api/tcpserver.cpp @@ -1,5 +1,5 @@ #include "tcpserver.h" -#include "quiwidget.h" +#include "quihelper.h" TcpServer::TcpServer(QObject *parent) : QTcpServer(parent) { diff --git a/nettool/api/webclient.cpp b/nettool/api/webclient.cpp index 255bb88..12d5423 100644 --- a/nettool/api/webclient.cpp +++ b/nettool/api/webclient.cpp @@ -1,5 +1,5 @@ #include "webclient.h" -#include "quiwidget.h" +#include "quihelper.h" WebClient::WebClient(QWebSocket *socket, QObject *parent) : QObject(parent) { diff --git a/nettool/api/webserver.cpp b/nettool/api/webserver.cpp index e419b87..b3c9b7b 100644 --- a/nettool/api/webserver.cpp +++ b/nettool/api/webserver.cpp @@ -1,5 +1,5 @@ #include "webserver.h" -#include "quiwidget.h" +#include "quihelper.h" WebServer::WebServer(const QString &serverName, SslMode secureMode, QObject *parent) : QWebSocketServer(serverName, secureMode, parent) { diff --git a/nettool/form/frmmain.cpp b/nettool/form/frmmain.cpp index 1e03f3e..94a5c94 100644 --- a/nettool/form/frmmain.cpp +++ b/nettool/form/frmmain.cpp @@ -1,6 +1,6 @@ #include "frmmain.h" #include "ui_frmmain.h" -#include "quiwidget.h" +#include "quihelper.h" #include "frmtcpclient.h" #include "frmtcpserver.h" diff --git a/nettool/form/frmtcpclient.cpp b/nettool/form/frmtcpclient.cpp index 6e6dd2b..ac19d8b 100644 --- a/nettool/form/frmtcpclient.cpp +++ b/nettool/form/frmtcpclient.cpp @@ -1,6 +1,6 @@ #include "frmtcpclient.h" #include "ui_frmtcpclient.h" -#include "quiwidget.h" +#include "quihelper.h" frmTcpClient::frmTcpClient(QWidget *parent) : QWidget(parent), ui(new Ui::frmTcpClient) { diff --git a/nettool/form/frmtcpserver.cpp b/nettool/form/frmtcpserver.cpp index b1c10e5..5ea4938 100644 --- a/nettool/form/frmtcpserver.cpp +++ b/nettool/form/frmtcpserver.cpp @@ -1,6 +1,6 @@ #include "frmtcpserver.h" #include "ui_frmtcpserver.h" -#include "quiwidget.h" +#include "quihelper.h" frmTcpServer::frmTcpServer(QWidget *parent) : QWidget(parent), ui(new Ui::frmTcpServer) { diff --git a/nettool/form/frmudpclient.cpp b/nettool/form/frmudpclient.cpp index 157d363..c24e9e4 100644 --- a/nettool/form/frmudpclient.cpp +++ b/nettool/form/frmudpclient.cpp @@ -1,6 +1,6 @@ #include "frmudpclient.h" #include "ui_frmudpclient.h" -#include "quiwidget.h" +#include "quihelper.h" frmUdpClient::frmUdpClient(QWidget *parent) : QWidget(parent), ui(new Ui::frmUdpClient) { diff --git a/nettool/form/frmudpserver.cpp b/nettool/form/frmudpserver.cpp index ebfff03..42775d5 100644 --- a/nettool/form/frmudpserver.cpp +++ b/nettool/form/frmudpserver.cpp @@ -1,6 +1,6 @@ #include "frmudpserver.h" #include "ui_frmudpserver.h" -#include "quiwidget.h" +#include "quihelper.h" frmUdpServer::frmUdpServer(QWidget *parent) : QWidget(parent), ui(new Ui::frmUdpServer) { diff --git a/nettool/form/frmwebclient.cpp b/nettool/form/frmwebclient.cpp index 16eb8c5..274b132 100644 --- a/nettool/form/frmwebclient.cpp +++ b/nettool/form/frmwebclient.cpp @@ -1,6 +1,6 @@ #include "frmwebclient.h" #include "ui_frmwebclient.h" -#include "quiwidget.h" +#include "quihelper.h" frmWebClient::frmWebClient(QWidget *parent) : QWidget(parent), ui(new Ui::frmWebClient) { diff --git a/nettool/form/frmwebserver.cpp b/nettool/form/frmwebserver.cpp index 56ce806..fcd2777 100644 --- a/nettool/form/frmwebserver.cpp +++ b/nettool/form/frmwebserver.cpp @@ -1,6 +1,6 @@ #include "frmwebserver.h" #include "ui_frmwebserver.h" -#include "quiwidget.h" +#include "quihelper.h" frmWebServer::frmWebServer(QWidget *parent) : QWidget(parent), ui(new Ui::frmWebServer) { diff --git a/nettool/main.cpp b/nettool/main.cpp index df441bd..3d1ad9d 100644 --- a/nettool/main.cpp +++ b/nettool/main.cpp @@ -1,5 +1,5 @@ #include "frmmain.h" -#include "quiwidget.h" +#include "quihelper.h" int main(int argc, char *argv[]) {