diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/envelp/labfmt.cxx | 1 | ||||
-rw-r--r-- | sw/source/uibase/docvw/srcedtw.cxx | 3 | ||||
-rw-r--r-- | sw/source/uibase/utlui/unotools.cxx | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/sw/source/ui/envelp/labfmt.cxx b/sw/source/ui/envelp/labfmt.cxx index f5b0a9393efd..b1aa3308bada 100644 --- a/sw/source/ui/envelp/labfmt.cxx +++ b/sw/source/ui/envelp/labfmt.cxx @@ -294,6 +294,7 @@ void SwLabPreview::UpdateItem(const SwLabItem& rItem) SwLabFormatPage::SwLabFormatPage(vcl::Window* pParent, const SfxItemSet& rSet) : SfxTabPage(pParent, "LabelFormatPage", "modules/swriter/ui/labelformatpage.ui", &rSet) + , aPreviewIdle("SwLabFormatPage Preview") , bModified(false) , aItem(static_cast<const SwLabItem&>( rSet.Get(FN_LABEL) )) { diff --git a/sw/source/uibase/docvw/srcedtw.cxx b/sw/source/uibase/docvw/srcedtw.cxx index f5784b87e3ba..4bce8bc7ec66 100644 --- a/sw/source/uibase/docvw/srcedtw.cxx +++ b/sw/source/uibase/docvw/srcedtw.cxx @@ -250,7 +250,8 @@ SwSrcEditWindow::SwSrcEditWindow( vcl::Window* pParent, SwSrcView* pParentView ) nStartLine(USHRT_MAX), eSourceEncoding(osl_getThreadTextEncoding()), bDoSyntaxHighlight(true), - bHighlighting(false) + bHighlighting(false), + aSyntaxIdle("sw uibase SwSrcEditWindow Syntax") { SetHelpId(HID_SOURCE_EDITWIN); CreateTextEngine(); diff --git a/sw/source/uibase/utlui/unotools.cxx b/sw/source/uibase/utlui/unotools.cxx index c7ce30c7b8bb..da7512c57687 100644 --- a/sw/source/uibase/utlui/unotools.cxx +++ b/sw/source/uibase/utlui/unotools.cxx @@ -67,6 +67,7 @@ SwOneExampleFrame::SwOneExampleFrame( vcl::Window& rWin, const Link<SwOneExampleFrame&,void>* pInitializedLink, const OUString* pURL ) : aTopWindow(VclPtr<SwFrameCtrlWindow>::Create(&rWin, this)), + aLoadedIdle("sw uibase SwOneExampleFrame Loaded"), aMenuRes(SW_RES(RES_FRMEX_MENU)), pModuleView(SW_MOD()->GetView()), nStyleFlags(nFlags), |