diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-17 13:27:56 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-17 13:27:56 +0100 |
commit | 19f2cbb9566eddac697c673eed63c0e946f330a6 (patch) | |
tree | fc5b25ece35bac0e9bf94e1e6fe081cbc2ad07d0 /common/listener.h | |
parent | 65e483c178a1980eb36e7b8efb8a76c7112f209e (diff) | |
download | sink-19f2cbb9566eddac697c673eed63c0e946f330a6.tar.gz sink-19f2cbb9566eddac697c673eed63c0e946f330a6.zip |
Use slots/signals instead of Q_SLOTS/Q_SIGNALS for clang-format compatibility
Diffstat (limited to 'common/listener.h')
-rw-r--r-- | common/listener.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/listener.h b/common/listener.h index 5bcc93e..49ded1a 100644 --- a/common/listener.h +++ b/common/listener.h | |||
@@ -65,13 +65,13 @@ public: | |||
65 | Listener(const QByteArray &resourceName, QObject *parent = 0); | 65 | Listener(const QByteArray &resourceName, QObject *parent = 0); |
66 | ~Listener(); | 66 | ~Listener(); |
67 | 67 | ||
68 | Q_SIGNALS: | 68 | signals: |
69 | void noClients(); | 69 | void noClients(); |
70 | 70 | ||
71 | public Q_SLOTS: | 71 | public slots: |
72 | void closeAllConnections(); | 72 | void closeAllConnections(); |
73 | 73 | ||
74 | private Q_SLOTS: | 74 | private slots: |
75 | void acceptConnection(); | 75 | void acceptConnection(); |
76 | void clientDropped(); | 76 | void clientDropped(); |
77 | void checkConnections(); | 77 | void checkConnections(); |