summaryrefslogtreecommitdiff
path: root/src/qookie-cast-client.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2022-05-26 16:56:36 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2022-05-26 18:41:53 +0200
commit5746abc233d24e39e84effb481b3baac1e9fe19b (patch)
tree50087a7fb00a8fb27f911664ed3a492766bdda0e /src/qookie-cast-client.h
parentae67eeb9f42b882f41f359322863f608e05a568a (diff)
Make use of ctor externals for better cross-system compilation support.
Diffstat (limited to 'src/qookie-cast-client.h')
-rw-r--r--src/qookie-cast-client.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/qookie-cast-client.h b/src/qookie-cast-client.h
index e22b8e7..8e4299a 100644
--- a/src/qookie-cast-client.h
+++ b/src/qookie-cast-client.h
@@ -1,7 +1,8 @@
// -*- c++ -*-
-#include <QtCore>
-#include <QtNetwork>
-#include <QTabWidget>
+
+#include <QtNetwork/QTcpSocket>
+#include <QtNetwork/QTcpServer>
+#include <QtWidgets/QTabWidget>
class Server
: public QObject
@@ -29,9 +30,8 @@ class MyTabs : public QTabWidget
{
Q_OBJECT
public:
- MyTabs();
+ MyTabs();
public slots:
- void doCloseIt(int index);
+ void doCloseIt(int index);
};
-