diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-28 10:59:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-28 19:35:13 +0200 |
commit | d72511eda923c827a6175bec9b8f24c237f82730 (patch) | |
tree | 2f0173ce3a9ff08b9cfccad0313db9a142f1a6ba /svx/source/dialog | |
parent | 0bcc4b55d723f73b2fb7a86fcfebeca49905079e (diff) |
gives names to all the Idles and Tasks
enforce it by making the constructor parameter non-default.
Change-Id: I321543e4dcf15ea0a43ad8cce91d2f8dc22df6ec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122766
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/imapimp.hxx | 3 | ||||
-rw-r--r-- | svx/source/dialog/srchdlg.cxx | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/dialog/imapimp.hxx b/svx/source/dialog/imapimp.hxx index f2a10e45e98d..50862f625f83 100644 --- a/svx/source/dialog/imapimp.hxx +++ b/svx/source/dialog/imapimp.hxx @@ -38,7 +38,8 @@ public: bool bExecState; IMapOwnData() - : pUpdateEditingObject(nullptr) + : aIdle("svx IMapOwnData") + , pUpdateEditingObject(nullptr) , bExecState(false) { } diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx index b266d04acd9f..f28c5bdfc3b8 100644 --- a/svx/source/dialog/srchdlg.cxx +++ b/svx/source/dialog/srchdlg.cxx @@ -128,7 +128,7 @@ struct SearchDlg_Impl bool bSaveToModule : 1, bFocusOnSearch : 1; WhichRangesContainer pRanges; - Timer aSelectionTimer; + Timer aSelectionTimer { "svx SearchDlg_Impl aSelectionTimer" }; uno::Reference< frame::XDispatch > xCommand1Dispatch; uno::Reference< frame::XDispatch > xCommand2Dispatch; |