[Libreoffice-commits] core.git: sfx2/source
apurvapriyadarshi
apriyadarshi.1995 at gmail.com
Sat Jun 11 17:18:27 UTC 2016
sfx2/source/appl/appcfg.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 8b135ba875a22a86d89f25bbc229cf2b7edcbe8c
Author: apurvapriyadarshi <apriyadarshi.1995 at gmail.com>
Date: Sat Jun 11 03:48:46 2016 +0530
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 at libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin at gmail.com>
diff --git a/sfx2/source/appl/appcfg.cxx b/sfx2/source/appl/appcfg.cxx
index c8134ba..65cabfe 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();
More information about the Libreoffice-commits
mailing list