diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/framework/module/ShellStackGuard.cxx | 6 | ||||
-rw-r--r-- | sd/source/ui/framework/module/ShellStackGuard.hxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/framework/module/ShellStackGuard.cxx b/sd/source/ui/framework/module/ShellStackGuard.cxx index cf72edc9d2a2..d567c2099b22 100644 --- a/sd/source/ui/framework/module/ShellStackGuard.cxx +++ b/sd/source/ui/framework/module/ShellStackGuard.cxx @@ -118,12 +118,12 @@ void SAL_CALL ShellStackGuard::disposing ( } } -IMPL_LINK(ShellStackGuard, TimeoutHandler, Timer*, pTimer) +IMPL_LINK(ShellStackGuard, TimeoutHandler, Idle*, pIdle) { #ifdef DEBUG - OSL_ASSERT(pTimer==&maPrinterPollingIdle); + OSL_ASSERT(pIdle==&maPrinterPollingIdle); #else - (void)pTimer; + (void)pIdle; #endif if (mpUpdateLock.get() != NULL) { diff --git a/sd/source/ui/framework/module/ShellStackGuard.hxx b/sd/source/ui/framework/module/ShellStackGuard.hxx index 22aaaa732045..c41158cf56f6 100644 --- a/sd/source/ui/framework/module/ShellStackGuard.hxx +++ b/sd/source/ui/framework/module/ShellStackGuard.hxx @@ -86,7 +86,7 @@ private: ::boost::scoped_ptr<ConfigurationController::Lock> mpUpdateLock; Idle maPrinterPollingIdle; - DECL_LINK(TimeoutHandler, Timer*); + DECL_LINK(TimeoutHandler, Idle*); /** Return <TRUE/> when the printer is printing. Return <FALSE/> when the printer is not printing, or there is no printer, or something |