diff options
author | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2016-05-01 08:34:58 +0300 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-05-16 01:06:48 +0000 |
commit | 98505584ba3f324e36800704bbdacc2b7cf0ef71 (patch) | |
tree | 22857e659ef2bd139a443430d43a89eca34118d6 /sd | |
parent | ffb19d826604930dee96fc356597eeac5f0817c1 (diff) |
Give unique, comprehensible names to idles tdf#97087
Timers and idles should have programmer comprehensible, unique names.
Change-Id: Ida131a4e3ddb7f065d876d78dd501fa831d4cf4a
Reviewed-on: https://gerrit.libreoffice.org/24605
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/slidesorter/controller/SlsAnimator.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/sdview.cxx | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sd/source/ui/slidesorter/controller/SlsAnimator.cxx b/sd/source/ui/slidesorter/controller/SlsAnimator.cxx index 6d13918a6e37..a3ad04e42967 100644 --- a/sd/source/ui/slidesorter/controller/SlsAnimator.cxx +++ b/sd/source/ui/slidesorter/controller/SlsAnimator.cxx @@ -60,7 +60,7 @@ public: Animator::Animator (SlideSorter& rSlideSorter) : mrSlideSorter(rSlideSorter), - maIdle(), + maIdle("sd slidesorter controller Animator"), mbIsDisposed(false), maAnimations(), maElapsedTime(), diff --git a/sd/source/ui/view/sdview.cxx b/sd/source/ui/view/sdview.cxx index 969fbc71c99c..c6e44d353d80 100644 --- a/sd/source/ui/view/sdview.cxx +++ b/sd/source/ui/view/sdview.cxx @@ -113,6 +113,8 @@ View::View(SdDrawDocument& rDrawDoc, OutputDevice* pOutDev, mpDropMarker(nullptr), mnDragSrcPgNum(SDRPAGE_NOTFOUND), mnAction(DND_ACTION_NONE), + maDropErrorIdle("sd View DropError"), + maDropInsertFileIdle("sd View DropInsertFile"), mnLockRedrawSmph(0), mbIsDropAllowed(true), maSmartTags(*this), |