summaryrefslogtreecommitdiff
path: root/main.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'main.cxx')
-rw-r--r--main.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.cxx b/main.cxx
index cacf2cd..5f0e13d 100644
--- a/main.cxx
+++ b/main.cxx
@@ -2,7 +2,7 @@
#include <QQmlApplicationEngine>
#include <QThread>
#include "user.hxx"
-#include "networkworker.hxx"
+#include "worker.hxx"
int main(int argc, char* argv[])
{
@@ -10,7 +10,7 @@ int main(int argc, char* argv[])
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
- NetworkWorker worker{};
+ Worker worker{};
QThread thread;
worker.moveToThread(&thread);