diff options
author | Tobias Madl <tobias.madl.dev@gmail.com> | 2014-12-10 11:01:48 +0000 |
---|---|---|
committer | Tobias Madl <tobias.madl.dev@gmail.com> | 2014-12-10 12:06:42 +0000 |
commit | d1577ee1ed215d9d4adfcdc0a71e2cfec0f3ebda (patch) | |
tree | 27c1a2b486bf7d4175bde3ad5c7da8c19922f0d0 /sd | |
parent | 861e7853e3b98b0adf5a72c88e2bf8c16ca17d09 (diff) |
priorities: prevent future compatibility problems
Change-Id: I735bac570a0bed35d9ddc07e5f107fb696b49082
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 |