summaryrefslogtreecommitdiff
path: root/include/svtools/asynclink.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svtools/asynclink.hxx')
-rw-r--r--include/svtools/asynclink.hxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/svtools/asynclink.hxx b/include/svtools/asynclink.hxx
index 3a699fe46a14..ae5139e3206b 100644
--- a/include/svtools/asynclink.hxx
+++ b/include/svtools/asynclink.hxx
@@ -34,8 +34,6 @@ class UNLESS_MERGELIBS(SVT_DLLPUBLIC) AsynchronLink
{
Link<void*,void> _aLink;
ImplSVEvent* _nEventId;
- bool _bInCall;
- bool* _pDeleted;
void* _pArg;
std::mutex _aMutex;
@@ -45,14 +43,10 @@ public:
AsynchronLink( const Link<void*,void>& rLink )
: _aLink( rLink )
, _nEventId( nullptr )
- , _bInCall( false )
- , _pDeleted( nullptr )
, _pArg( nullptr )
{}
AsynchronLink()
: _nEventId( nullptr )
- , _bInCall( false )
- , _pDeleted( nullptr )
, _pArg( nullptr )
{}
~AsynchronLink();