code style - indentation
This commit is contained in:
parent
a97fa1428b
commit
f62cac6a0a
|
@ -48,13 +48,14 @@
|
||||||
// CClient
|
// CClient
|
||||||
//
|
//
|
||||||
|
|
||||||
CClient::CClient(IEventQueue* events,
|
CClient::CClient(
|
||||||
const CString& name, const CNetworkAddress& address,
|
IEventQueue* events,
|
||||||
ISocketFactory* socketFactory,
|
const CString& name, const CNetworkAddress& address,
|
||||||
IStreamFilterFactory* streamFilterFactory,
|
ISocketFactory* socketFactory,
|
||||||
CScreen* screen,
|
IStreamFilterFactory* streamFilterFactory,
|
||||||
const CCryptoOptions& crypto,
|
CScreen* screen,
|
||||||
bool enableDragDrop) :
|
const CCryptoOptions& crypto,
|
||||||
|
bool enableDragDrop) :
|
||||||
m_mock(false),
|
m_mock(false),
|
||||||
m_name(name),
|
m_name(name),
|
||||||
m_serverAddress(address),
|
m_serverAddress(address),
|
||||||
|
@ -730,8 +731,8 @@ CClient::onFileRecieveCompleted()
|
||||||
{
|
{
|
||||||
if (isReceivedFileSizeValid()) {
|
if (isReceivedFileSizeValid()) {
|
||||||
m_writeToDropDirThread = new CThread(
|
m_writeToDropDirThread = new CThread(
|
||||||
new TMethodJob<CClient>(
|
new TMethodJob<CClient>(
|
||||||
this, &CClient::writeToDropDirThread));
|
this, &CClient::writeToDropDirThread));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,12 @@
|
||||||
// CServer
|
// 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_mock(false),
|
||||||
m_primaryClient(primaryClient),
|
m_primaryClient(primaryClient),
|
||||||
m_active(primaryClient),
|
m_active(primaryClient),
|
||||||
|
|
Loading…
Reference in New Issue