From 720d940f9e68f168afb88aa145e9b516431bd49b Mon Sep 17 00:00:00 2001 From: "Thomas Lange [tl]" Date: Fri, 12 Nov 2010 10:24:26 +0100 Subject: cws tlmath01: #i972# fixed crash with WriterWeb 'Formatting Aids' tab page --- sw/source/ui/app/appopt.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/ui/app/appopt.cxx b/sw/source/ui/app/appopt.cxx index 485625be0e69..a1e6cef80cd1 100644 --- a/sw/source/ui/app/appopt.cxx +++ b/sw/source/ui/app/appopt.cxx @@ -591,7 +591,7 @@ SfxTabPage* SwModule::CreateTabPage( USHORT nId, Window* pParent, const SfxItemS if ( fnCreatePage ) pRet = (*fnCreatePage)( pParent, rSet ); } - if (pRet && nId == RID_SW_TP_OPTSHDWCRSR) + if (pRet && (nId == RID_SW_TP_OPTSHDWCRSR || nId == RID_SW_TP_HTML_OPTSHDWCRSR)) { SwView* pCurrView = GetView(); if(pCurrView) -- cgit