summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2016-04-08 15:15:52 +0300
committerMichael Meeks <michael.meeks@collabora.com>2016-04-13 08:06:29 +0000
commitc03a11b8f0c93b1c55d9abc9aa224aeb298d1976 (patch)
tree3979f8642aa15534d3568ac1e3f2db2a2191b4a4 /sd
parent3dcd271f7e62e6d175cb187dbb2bbd099f5ca28e (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>
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 c0a5076bf073..6587a46f010d 100644
--- a/sd/source/core/drawdoc2.cxx
+++ b/sd/source/core/drawdoc2.cxx
@@ -642,7 +642,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();