summaryrefslogtreecommitdiff
path: root/include/m_protosvc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/m_protosvc.h')
-rw-r--r--include/m_protosvc.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/m_protosvc.h b/include/m_protosvc.h
index e65682d949..e98a13c489 100644
--- a/include/m_protosvc.h
+++ b/include/m_protosvc.h
@@ -797,14 +797,15 @@ __forceinline INT_PTR ProtoChainRecvFile(MCONTACT hContact, PROTORECVFILE *pre)
struct OFDTHREAD
{
- __forceinline OFDTHREAD(MEVENT _1, const CMStringW &_2) :
+ __forceinline OFDTHREAD(MEVENT _1, const CMStringW &_2, bool _3) :
hDbEvent(_1),
- wszPath(_2)
+ wszPath(_2),
+ bOpen(_3)
{}
MEVENT hDbEvent;
CMStringW wszPath;
- bool bOpen = true;
+ bool bOpen;
};
///////////////////////////////////////////////////////////////////////////////