From 376c337d46acf8819bf032251bfc7d5eb31db198 Mon Sep 17 00:00:00 2001 From: Muhammet Kara Date: Tue, 26 Apr 2016 10:20:41 +0300 Subject: 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 Reviewed-by: Michael Meeks Tested-by: Michael Meeks --- formula/source/ui/dlg/funcutl.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'formula') diff --git a/formula/source/ui/dlg/funcutl.cxx b/formula/source/ui/dlg/funcutl.cxx index 2d49d982b0f5..9052d7c6f19e 100644 --- a/formula/source/ui/dlg/funcutl.cxx +++ b/formula/source/ui/dlg/funcutl.cxx @@ -429,6 +429,7 @@ void EditBox::UpdateOldSel() RefEdit::RefEdit( vcl::Window* _pParent, vcl::Window* pShrinkModeLabel, WinBits nStyle ) : Edit( _pParent, nStyle ) + , aIdle("formula RefEdit Idle") , pAnyRefDlg( nullptr ) , pLabelWidget(pShrinkModeLabel) { @@ -439,6 +440,7 @@ RefEdit::RefEdit( vcl::Window* _pParent, vcl::Window* pShrinkModeLabel, WinBits RefEdit::RefEdit( vcl::Window* _pParent,IControlReferenceHandler* pParent, vcl::Window* pShrinkModeLabel, const ResId& rResId ) : Edit( _pParent, rResId ) + , aIdle("formula RefEdit Idle") , pAnyRefDlg( pParent ) , pLabelWidget(pShrinkModeLabel) { -- cgit