summaryrefslogtreecommitdiff
path: root/sd/source/ui/slideshow/slideshowimpl.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2021-03-08 18:31:36 +0100
committerLuboš Luňák <l.lunak@collabora.com>2021-03-09 14:23:34 +0100
commit5e8c0e2556eebfee7b2d75403cbf5cee6642e644 (patch)
treea0ec2551f9b78b1d7e742016f5a376d01b794dc9 /sd/source/ui/slideshow/slideshowimpl.cxx
parentce01b5d4a81f1b407522dbdd831900bab8e9ef00 (diff)
add some Timer debug names
Change-Id: I7a0037ffd7d45ab18efa76dce805274090527525 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112182 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'sd/source/ui/slideshow/slideshowimpl.cxx')
-rw-r--r--sd/source/ui/slideshow/slideshowimpl.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx
index b9639f184cb9..b52fb82a9d22 100644
--- a/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -518,13 +518,16 @@ SlideshowImpl::SlideshowImpl( const Reference< XPresentation2 >& xPresentation,
if( mpViewShell )
mpOldActiveWindow = mpViewShell->GetActiveWindow();
+ maUpdateTimer.SetDebugName("SlideShowImpl maUpdateTimer");
maUpdateTimer.SetInvokeHandler(LINK(this, SlideshowImpl, updateHdl));
// Priority must not be too high or we'll starve input handling etc.
maUpdateTimer.SetPriority(TaskPriority::REPAINT);
+ maDeactivateTimer.SetDebugName("SlideShowImpl maDeactivateTimer");
maDeactivateTimer.SetInvokeHandler(LINK(this, SlideshowImpl, deactivateHdl));
maDeactivateTimer.SetTimeout( 20 );
+ maInputFreezeTimer.SetDebugName("SlideShowImpl maInputFreezeTimer");
maInputFreezeTimer.SetInvokeHandler( LINK( this, SlideshowImpl, ReadyForNextInputHdl ) );
maInputFreezeTimer.SetTimeout( 20 );