summaryrefslogtreecommitdiffstats
path: root/sfx2
diff options
context:
space:
mode:
authorapurvapriyadarshi <apriyadarshi.1995@gmail.com>2016-06-11 03:48:46 +0530
committerNoel Grandin <noelgrandin@gmail.com>2016-06-11 17:18:01 +0000
commit8b135ba875a22a86d89f25bbc229cf2b7edcbe8c (patch)
treec7c2c88eba47079f6492e20938ecb7019f4536f3 /sfx2
parentResolves: tdf#100272 row ally index is ROW_INVALID (diff)
downloadcore-8b135ba875a22a86d89f25bbc229cf2b7edcbe8c.tar.gz
core-8b135ba875a22a86d89f25bbc229cf2b7edcbe8c.zip
tdf#97087 Timers and idles should have programmer comprehensible, unique names
Given unique name to a idles Change-Id: I185bff390981923c98e0aa7189b058748c057108 Reviewed-on: https://gerrit.libreoffice.org/26182 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/appcfg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/appcfg.cxx b/sfx2/source/appl/appcfg.cxx
index c8134ba58b3f..65cabfe7e553 100644
--- a/sfx2/source/appl/appcfg.cxx
+++ b/sfx2/source/appl/appcfg.cxx
@@ -109,7 +109,7 @@ SfxEventAsyncer_Impl::SfxEventAsyncer_Impl( const SfxEventHint& rHint )
{
if( rHint.GetObjShell() )
StartListening( *rHint.GetObjShell() );
- pIdle = new Idle;
+ pIdle = new Idle("SfxEventASyncer");
pIdle->SetIdleHdl( LINK(this, SfxEventAsyncer_Impl, IdleHdl) );
pIdle->SetPriority( SchedulerPriority::HIGHEST );
pIdle->Start();