From f62cac6a0a2c333822e4fea79c1b90f848d534ce Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Mon, 17 Mar 2014 11:16:52 +0000 Subject: [PATCH] code style - indentation --- src/lib/client/Client.cpp | 19 ++++++++++--------- src/lib/server/Server.cpp | 7 ++++++- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/src/lib/client/Client.cpp b/src/lib/client/Client.cpp index c97516e8..b63655da 100644 --- a/src/lib/client/Client.cpp +++ b/src/lib/client/Client.cpp @@ -48,13 +48,14 @@ // CClient // -CClient::CClient(IEventQueue* events, - const CString& name, const CNetworkAddress& address, - ISocketFactory* socketFactory, - IStreamFilterFactory* streamFilterFactory, - CScreen* screen, - const CCryptoOptions& crypto, - bool enableDragDrop) : +CClient::CClient( + IEventQueue* events, + const CString& name, const CNetworkAddress& address, + ISocketFactory* socketFactory, + IStreamFilterFactory* streamFilterFactory, + CScreen* screen, + const CCryptoOptions& crypto, + bool enableDragDrop) : m_mock(false), m_name(name), m_serverAddress(address), @@ -730,8 +731,8 @@ CClient::onFileRecieveCompleted() { if (isReceivedFileSizeValid()) { m_writeToDropDirThread = new CThread( - new TMethodJob( - this, &CClient::writeToDropDirThread)); + new TMethodJob( + this, &CClient::writeToDropDirThread)); } } diff --git a/src/lib/server/Server.cpp b/src/lib/server/Server.cpp index 9742f801..717c4c3f 100644 --- a/src/lib/server/Server.cpp +++ b/src/lib/server/Server.cpp @@ -49,7 +49,12 @@ // CServer // -CServer::CServer(CConfig& config, CPrimaryClient* primaryClient, CScreen* screen, IEventQueue* events, bool enableDragDrop) : +CServer::CServer( + CConfig& config, + CPrimaryClient* primaryClient, + CScreen* screen, + IEventQueue* events, + bool enableDragDrop) : m_mock(false), m_primaryClient(primaryClient), m_active(primaryClient),