diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-08-31 13:54:46 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-08-31 14:06:34 +0300 |
commit | 1d1a1ff731267b9140197aedb9e90fe15c40ac0e (patch) | |
tree | 486ceed805d084e2c562de21024518c668a7fa63 /sc/source | |
parent | 66518ead516e90d606e87c6ce58ec11fea6d172e (diff) |
No need to call SetDebugName() when we already pass the same name to the ctor
(Well, actually there wwre a minor difference, "sc ScModule IdleTimer"
vs. "sc::ScModule aIdleTimer", and ditto for "SpellIdle", but that is
hardly essential if even intentional?)
Change-Id: I18a2af0d25c40404a41b1461664feda73183881e
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/app/scmod.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx index e4cc2839c85a..2ee3e739d3dd 100644 --- a/sc/source/ui/app/scmod.cxx +++ b/sc/source/ui/app/scmod.cxx @@ -185,11 +185,9 @@ ScModule::ScModule( SfxObjectFactory* pFact ) : GetResLocale()); aSpellIdle.SetInvokeHandler( LINK( this, ScModule, SpellTimerHdl ) ); - aSpellIdle.SetDebugName( "sc::ScModule aSpellIdle" ); aIdleTimer.SetTimeout(SC_IDLE_MIN); aIdleTimer.SetInvokeHandler( LINK( this, ScModule, IdleHandler ) ); - aIdleTimer.SetDebugName( "sc::ScModule aIdleTimer" ); aIdleTimer.Start(); pMessagePool = new ScMessagePool; |