diff options
author | Michele Calgaro <[email protected]> | 2022-08-05 10:54:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-08-05 11:10:14 +0900 |
commit | 430373ae38565e0d7f62b8fca0cbad73de73ec7f (patch) | |
tree | 670a7322ddd2732c8824b1fb73090b937e2a1f82 /src/UiGuiIndentServer.h | |
parent | d833de5bbe40d780fe02dc95d1c981a4b1007108 (diff) | |
download | universal-indent-gui-tqt-430373ae38565e0d7f62b8fca0cbad73de73ec7f.tar.gz universal-indent-gui-tqt-430373ae38565e0d7f62b8fca0cbad73de73ec7f.zip |
Format code using uncrustify
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/UiGuiIndentServer.h')
-rw-r--r--[-rwxr-xr-x] | src/UiGuiIndentServer.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/src/UiGuiIndentServer.h b/src/UiGuiIndentServer.h index fb5e631..0a8f069 100755..100644 --- a/src/UiGuiIndentServer.h +++ b/src/UiGuiIndentServer.h @@ -28,28 +28,28 @@ class TQTcpSocket; class UiGuiIndentServer : public TQObject { - Q_OBJECT - -public: - UiGuiIndentServer(void); - ~UiGuiIndentServer(void); - -public slots: - void startServer(); - void stopServer(); - -private slots: - void handleNewConnection(); - void handleReceivedData(); - void sendMessage(const TQString &message); - void checkIfReadyForHandleRequest(); - -private: - TQTcpServer *_tcpServer; - TQByteArray _dataToSend; - bool _readyForHandleRequest; - TQTcpSocket *_currentClientConnection; - tquint32 _blockSize; + Q_OBJECT + + public: + UiGuiIndentServer(void); + ~UiGuiIndentServer(void); + + public slots: + void startServer(); + void stopServer(); + + private slots: + void handleNewConnection(); + void handleReceivedData(); + void sendMessage(const TQString &message); + void checkIfReadyForHandleRequest(); + + private: + TQTcpServer *_tcpServer; + TQByteArray _dataToSend; + bool _readyForHandleRequest; + TQTcpSocket *_currentClientConnection; + tquint32 _blockSize; }; #endif // UIGUIINDENTSERVER_H |