diff options
author | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-03-06 14:48:18 +0100 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2015-03-06 14:51:48 +0100 |
commit | d05a64df34fd143670cb939b72abfb32d6b714c7 (patch) | |
tree | 3dc542680cd3728419b9c95e34325f42047986e5 /sfx2/source/appl | |
parent | 01f406bc28f53acc5a2734af637aa8074a5d1813 (diff) |
Timer/Idle: adapted inherited funktions
Change-Id: I7714a4638b03d020820b276028c0819ef054fa26
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r-- | sfx2/source/appl/linksrc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/linksrc.cxx b/sfx2/source/appl/linksrc.cxx index 7b53359c6b63..ecd06b3bc5b8 100644 --- a/sfx2/source/appl/linksrc.cxx +++ b/sfx2/source/appl/linksrc.cxx @@ -38,7 +38,7 @@ TYPEINIT0( SvLinkSource ) class SvLinkSourceTimer : public Timer { SvLinkSource * pOwner; - virtual void Timeout() SAL_OVERRIDE; + virtual void Invoke() SAL_OVERRIDE; public: SvLinkSourceTimer( SvLinkSource * pOwn ); }; @@ -48,7 +48,7 @@ SvLinkSourceTimer::SvLinkSourceTimer( SvLinkSource * pOwn ) { } -void SvLinkSourceTimer::Timeout() +void SvLinkSourceTimer::Invoke() { // Secure against being destroyed in Handler SvLinkSourceRef aAdv( pOwner ); |