diff options
author | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2016-04-26 10:20:41 +0300 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2016-04-28 09:34:30 +0000 |
commit | 376c337d46acf8819bf032251bfc7d5eb31db198 (patch) | |
tree | 38f13ac3cdbc03e599e27eb8a06680bb31c273be /sc/source/ui/docshell | |
parent | 91adb929d747ef1434fb1732fdbf51283fda78e8 (diff) |
tdf#97087 Give comprehensible, unique names to idles
Timers and idles should have programmer comprehensible, unique names
Change-Id: Id0f2c0a77cd28c3ec5473e8432569739b58d2101
Reviewed-on: https://gerrit.libreoffice.org/24388
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'sc/source/ui/docshell')
-rw-r--r-- | sc/source/ui/docshell/autostyl.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/docshell/autostyl.cxx b/sc/source/ui/docshell/autostyl.cxx index 1e099613e34b..463b88bcd314 100644 --- a/sc/source/ui/docshell/autostyl.cxx +++ b/sc/source/ui/docshell/autostyl.cxx @@ -59,6 +59,8 @@ struct FindNonZeroTimeout : public ::std::unary_function<ScAutoStyleData, bool> ScAutoStyleList::ScAutoStyleList(ScDocShell* pShell) : pDocSh(pShell) + , aTimer("ScAutoStyleList Timer") + , aInitIdle("ScAutoStyleList InitIdle") , nTimerStart(0) { aTimer.SetTimeoutHdl( LINK( this, ScAutoStyleList, TimerHdl ) ); |