sfx2/source/appl/appcfg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8b135ba875a22a86d89f25bbc229cf2b7edcbe8c
Author: apurvapriyadarshi <apriyadarshi.1...@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 <c...@libreoffice.org>
    Reviewed-by: Noel Grandin <noelgran...@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();
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to