diff options
author | apurvapriyadarshi <apriyadarshi.1995@gmail.com> | 2016-06-11 03:48:46 +0530 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-11 17:18:01 +0000 |
commit | 8b135ba875a22a86d89f25bbc229cf2b7edcbe8c (patch) | |
tree | c7c2c88eba47079f6492e20938ecb7019f4536f3 /sfx2 | |
parent | 0f32ba56a1e775e8ecd6c827ebd48f7f2fb51c81 (diff) |
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.cxx | 2 |
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(); |