diff options
author | Thomas Lange [tl] <tl@openoffice.org> | 2010-11-12 10:24:26 +0100 |
---|---|---|
committer | Thomas Lange [tl] <tl@openoffice.org> | 2010-11-12 10:24:26 +0100 |
commit | 720d940f9e68f168afb88aa145e9b516431bd49b (patch) | |
tree | ec633bcc60885c25dda0a0e46f39de3d43362cea /sw/source/ui/app/appopt.cxx | |
parent | 9e78669b1379af88d8c8f15affc3a920fa7cd393 (diff) |
cws tlmath01: #i972# fixed crash with WriterWeb 'Formatting Aids' tab page
Diffstat (limited to 'sw/source/ui/app/appopt.cxx')
-rw-r--r-- | sw/source/ui/app/appopt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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) |