summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorTarun Sharma <starun.1998@gmail.com>2021-05-04 15:18:21 +0530
committerMichael Stahl <michael.stahl@allotropia.de>2021-05-06 11:53:19 +0200
commit2e417a09b5497bb8aa86727a280960aeb5023af0 (patch)
tree041c3aa66111b57ad6788cb72aba28480fd9302d /sfx2
parentde1c3bd004b069cd1796423e796999cf0737f823 (diff)
tdf#97087 Give unique, comphrehensible names to idles
Change-Id: Id146a5a89c9189285409641494badf3d49931a0b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115064 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/dinfdlg.cxx1
-rw-r--r--sfx2/source/doc/templatedlg.cxx1
2 files changed, 2 insertions, 0 deletions
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index 6ea3fa7a17c9..19b4529e180b 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -1315,6 +1315,7 @@ CustomPropertiesWindow::CustomPropertiesWindow(weld::Container& rParent, weld::L
, m_rHeaderAccValue(rHeaderAccValue)
{
m_aEditLoseFocusIdle.SetPriority( TaskPriority::LOWEST );
+ m_aEditLoseFocusIdle.SetDebugName("sfx2 CustomPropertiesWindow loseFocusIdle");
m_aEditLoseFocusIdle.SetInvokeHandler( LINK( this, CustomPropertiesWindow, EditTimeoutHdl ) );
m_aBoxLoseFocusIdle.SetPriority( TaskPriority::LOWEST );
m_aBoxLoseFocusIdle.SetInvokeHandler( LINK( this, CustomPropertiesWindow, BoxTimeoutHdl ) );
diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx
index 14e7db818f1e..413ba517004c 100644
--- a/sfx2/source/doc/templatedlg.cxx
+++ b/sfx2/source/doc/templatedlg.cxx
@@ -1480,6 +1480,7 @@ short SfxTemplateSelectionDlg::run()
// tdf#125079 toggle off the size tracking at some future idle point
maIdle.SetPriority(TaskPriority::LOWEST);
+ maIdle.SetDebugName("sfx2 SfxTemplateManagerDlg maIdle");
maIdle.SetInvokeHandler(LINK(this,SfxTemplateSelectionDlg,TimeOut));
maIdle.Start();
setTemplateViewMode(TemplateViewMode::eThumbnailView);