summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2016-04-08 15:15:52 +0300
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-07-20 01:26:02 -0400
commitd4b38602c6ae1f0ae45d3f52e15795bfaabd523c (patch)
tree300d83a1f1ef66c9af83f81f2cbb7951844f731a /sd
parentd77b00ca4d6869ae233e9de2babc67138a2168fb (diff)
tdf#97087 Give comprehensible names to timers
Timers and idles should have programmer comprehensible, unique names Change-Id: I837d1890c687936f8a31278c0102391e6f87212d Reviewed-on: https://gerrit.libreoffice.org/23917 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Jenkins <ci@libreoffice.org> (cherry picked from commit c03a11b8f0c93b1c55d9abc9aa224aeb298d1976)
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/drawdoc2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/core/drawdoc2.cxx b/sd/source/core/drawdoc2.cxx
index 1746cdfbf0ed..7de324e4563e 100644
--- a/sd/source/core/drawdoc2.cxx
+++ b/sd/source/core/drawdoc2.cxx
@@ -662,7 +662,7 @@ void SdDrawDocument::CreateFirstPages( SdDrawDocument* pRefDocument /* = 0 */ )
if( !pRefPage && (meDocType != DOCUMENT_TYPE_DRAW) )
pPage->SetAutoLayout( AUTOLAYOUT_TITLE, true, true );
- mpWorkStartupTimer = new Timer();
+ mpWorkStartupTimer = new Timer("DrawWorkStartupTimer");
mpWorkStartupTimer->SetTimeoutHdl( LINK(this, SdDrawDocument, WorkStartupHdl) );
mpWorkStartupTimer->SetTimeout(2000);
mpWorkStartupTimer->Start();