mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-14 23:27:38 +02:00
code style - indentation
This commit is contained in:
parent
a97fa1428b
commit
f62cac6a0a
2 changed files with 16 additions and 10 deletions
|
@ -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<CClient>(
|
||||
this, &CClient::writeToDropDirThread));
|
||||
new TMethodJob<CClient>(
|
||||
this, &CClient::writeToDropDirThread));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue