[Libreoffice-commits] core.git: sfx2/source
Tarun Sharma (via logerrit)
logerrit at kemper.freedesktop.org
Thu May 6 09:53:59 UTC 2021
sfx2/source/dialog/dinfdlg.cxx | 1 +
sfx2/source/doc/templatedlg.cxx | 1 +
2 files changed, 2 insertions(+)
New commits:
commit 2e417a09b5497bb8aa86727a280960aeb5023af0
Author: Tarun Sharma <starun.1998 at gmail.com>
AuthorDate: Tue May 4 15:18:21 2021 +0530
Commit: Michael Stahl <michael.stahl at allotropia.de>
CommitDate: Thu May 6 11:53:19 2021 +0200
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 at allotropia.de>
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);
More information about the Libreoffice-commits
mailing list