diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-03-09 13:33:39 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-03-09 14:15:48 +0100 |
commit | 958e3cd958b53acb30b0070f76c8d6a1f12165c9 (patch) | |
tree | 1f9b12c2225b8e7a34678f8d1cf730d3ea237462 /sc/source | |
parent | 18de9b1de1aa404b3ca12e2018e5e5e220dd9786 (diff) |
correct fix for the linking problem
Change-Id: Idecead242c71c89cddb166cce36fa41f912298d0
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/tool/refreshtimer.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/core/tool/refreshtimer.cxx b/sc/source/core/tool/refreshtimer.cxx index 9141e461eee1..1dab3d6d52ba 100644 --- a/sc/source/core/tool/refreshtimer.cxx +++ b/sc/source/core/tool/refreshtimer.cxx @@ -54,7 +54,7 @@ ScRefreshTimer::ScRefreshTimer() : ppControl(0) ScRefreshTimer::ScRefreshTimer( sal_uLong nSeconds ) : ppControl(0) { SetTimeout( nSeconds * 1000 ); - Start(); + Launch(); } ScRefreshTimer::ScRefreshTimer( const ScRefreshTimer& r ) : AutoTimer( r ), ppControl(0) @@ -111,7 +111,7 @@ void ScRefreshTimer::SetRefreshDelay( sal_uLong nSeconds ) Stop(); SetTimeout( nSeconds * 1000 ); if ( !bActive && nSeconds ) - Start(); + Launch(); } void ScRefreshTimer::Invoke() @@ -124,11 +124,11 @@ void ScRefreshTimer::Invoke() // restart from now on, don't execute immediately again if timed out // a second time during refresh if ( IsActive() ) - Start(); + Launch(); } } -void ScRefreshTimer::Start() +void ScRefreshTimer::Launch() { if ( GetTimeout() ) AutoTimer::Start(); |