diff --git a/DCCBounce.h b/DCCBounce.h index f24b7590..65a217dc 100644 --- a/DCCBounce.h +++ b/DCCBounce.h @@ -25,7 +25,7 @@ public: } } - CDCCBounce(const CString& sHostname, unsigned short uPort, CUser* pUser, const CString& sRemoteNick, const CString& sRemoteIP, const CString& sFileName, int itimeout = 60, bool bIsChat = false) : Csock(sHostname, uPort, itimeout) { + CDCCBounce(const CString& sHostname, unsigned short uPort, CUser* pUser, const CString& sRemoteNick, const CString& sRemoteIP, const CString& sFileName, int iTimeout = 60, bool bIsChat = false) : Csock(sHostname, uPort, iTimeout) { m_uRemotePort = 0; m_bIsChat = bIsChat; m_pManager = pUser->GetManager(); diff --git a/DCCSock.h b/DCCSock.h index 1e6f861a..a711a940 100644 --- a/DCCSock.h +++ b/DCCSock.h @@ -35,7 +35,7 @@ public: m_bNoDelFile = false; } -/* CDCCSock(CUser* pUser, const CString& sHostname, unsigned short uPort, int itimeout = 60) : Csock(sHostname, uPort, itimeout) { +/* CDCCSock(CUser* pUser, const CString& sHostname, unsigned short uPort, int iTimeout = 60) : Csock(sHostname, uPort, iTimeout) { m_uRemotePort = 0; m_uBytesSoFar = 0; m_uFileSize = 0; diff --git a/UserSock.h b/UserSock.h index 707404dc..bb833f2b 100644 --- a/UserSock.h +++ b/UserSock.h @@ -15,7 +15,7 @@ public: CUserSock() : Csock() { Init(); } - CUserSock(const CString& sHostname, unsigned short uPort, int itimeout = 60) : Csock(sHostname, uPort, itimeout) { + CUserSock(const CString& sHostname, unsigned short uPort, int iTimeout = 60) : Csock(sHostname, uPort, iTimeout) { Init(); } virtual ~CUserSock() {}