summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@pardus.org.tr>2016-04-26 10:20:41 +0300
committerMichael Meeks <michael.meeks@collabora.com>2016-04-28 09:34:30 +0000
commit376c337d46acf8819bf032251bfc7d5eb31db198 (patch)
tree38f13ac3cdbc03e599e27eb8a06680bb31c273be /sd
parent91adb929d747ef1434fb1732fdbf51283fda78e8 (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 'sd')
-rw-r--r--sd/source/ui/dlg/brkdlg.cxx1
-rw-r--r--sd/source/ui/framework/module/ShellStackGuard.cxx2
2 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/brkdlg.cxx b/sd/source/ui/dlg/brkdlg.cxx
index 15e65ae8723b..bf8709923872 100644
--- a/sd/source/ui/dlg/brkdlg.cxx
+++ b/sd/source/ui/dlg/brkdlg.cxx
@@ -45,6 +45,7 @@ BreakDlg::BreakDlg(
sal_uLong nSumActionCount,
sal_uLong nObjCount )
: SfxModalDialog(pWindow, "BreakDialog", "modules/sdraw/ui/breakdialog.ui")
+ , aIdle("sd BreakDlg Idle")
, mpProgress( nullptr )
{
get(m_pFiObjInfo, "metafiles");
diff --git a/sd/source/ui/framework/module/ShellStackGuard.cxx b/sd/source/ui/framework/module/ShellStackGuard.cxx
index 9e64562c1d57..a37cf5faafb2 100644
--- a/sd/source/ui/framework/module/ShellStackGuard.cxx
+++ b/sd/source/ui/framework/module/ShellStackGuard.cxx
@@ -43,7 +43,7 @@ ShellStackGuard::ShellStackGuard (Reference<frame::XController>& rxController)
mxConfigurationController(),
mpBase(nullptr),
mpUpdateLock(),
- maPrinterPollingIdle()
+ maPrinterPollingIdle("sd ShellStackGuard PrinterPollingIdle")
{
Reference<XControllerManager> xControllerManager (rxController, UNO_QUERY);
if (xControllerManager.is())