From daaeb2abd432ca768f79d86debd74ec3692e3054 Mon Sep 17 00:00:00 2001 From: Ivo Hinkelmann Date: Mon, 6 Apr 2009 08:50:30 +0000 Subject: #i100676# #i10000# office loop fix --- svx/source/dialog/dlgfact.cxx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'svx/source') diff --git a/svx/source/dialog/dlgfact.cxx b/svx/source/dialog/dlgfact.cxx index a3fd66ff04fe..ed53f512fc5d 100644 --- a/svx/source/dialog/dlgfact.cxx +++ b/svx/source/dialog/dlgfact.cxx @@ -41,7 +41,8 @@ #include #include #include - +#include +#include #include "splitcelldlg.hxx" #include #include "fmresids.hrc" @@ -2081,6 +2082,14 @@ AbstractSfxSingleTabDialog* AbstractDialogFactory_Impl::CreateSfxSingleTabDialog case RID_SFXPAGE_DBREGISTER : pDlg = new DatabaseRegistrationDialog( pParent, rAttr ); break; + case RID_SVXPAGE_IMPROVEMENT : + { + String help_url; + SFX_ITEMSET_ARG( &rAttr, pItem, SfxStringItem, SID_CURRENT_URL, sal_False ); + if ( pItem ) + help_url = pItem->GetValue(); + pDlg = new SvxImprovementDialog( pParent, help_url); + } default: break; } -- cgit