summaryrefslogtreecommitdiff
path: root/include/svtools/asynclink.hxx
diff options
context:
space:
mode:
authorTobias Madl <tobias.madl.dev@gmail.com>2014-11-17 12:36:23 +0000
committerTobias Madl <tobias.madl.dev@gmail.com>2014-12-09 12:34:59 +0000
commitab14edefdcc264381e3746bb7910f79043de77e6 (patch)
tree921d183e413e02d4d281ea49c6b8647001e3a393 /include/svtools/asynclink.hxx
parent5163d6b5c5716497c5def276f79454476259dba5 (diff)
changed Timer tp idle
Change-Id: Ia3e76239ba98530547e057bebfda767ad684730b
Diffstat (limited to 'include/svtools/asynclink.hxx')
-rw-r--r--include/svtools/asynclink.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svtools/asynclink.hxx b/include/svtools/asynclink.hxx
index e303bbe75e0a..fea886db2a4e 100644
--- a/include/svtools/asynclink.hxx
+++ b/include/svtools/asynclink.hxx
@@ -25,7 +25,7 @@
#include <tools/link.hxx>
#include <osl/mutex.hxx>
-class Timer;
+class Idle;
struct ImplSVEvent;
namespace svtools {
@@ -34,7 +34,7 @@ class SVT_DLLPUBLIC AsynchronLink
{
Link _aLink;
ImplSVEvent * _nEventId;
- Timer* _pTimer;
+ Idle* _pIdle;
bool _bInCall;
bool* _pDeleted;
void* _pArg;
@@ -47,7 +47,7 @@ public:
AsynchronLink( const Link& rLink )
: _aLink( rLink )
, _nEventId( 0 )
- , _pTimer( 0 )
+ , _pIdle( 0 )
, _bInCall( false )
, _pDeleted( 0 )
, _pArg( 0 )
@@ -55,7 +55,7 @@ public:
{}
AsynchronLink()
: _nEventId( 0 )
- , _pTimer( 0 )
+ , _pIdle( 0 )
, _bInCall( false )
, _pDeleted( 0 )
, _pArg( 0 )