From fba8eca64f9b2ce9579d6656a55cdc721b423952 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm <rt@openoffice.org> Date: Wed, 14 Dec 2005 15:56:15 +0000 Subject: INTEGRATION: CWS impressfunctions (1.5.40); FILE MERGED 2005/10/28 10:57:35 cl 1.5.40.1: #125341# reworked FuPoor classes to use refcounting --- sd/source/ui/func/fuconnct.cxx | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'sd/source') diff --git a/sd/source/ui/func/fuconnct.cxx b/sd/source/ui/func/fuconnct.cxx index affff287627d..becaf9fafa3b 100644 --- a/sd/source/ui/func/fuconnct.cxx +++ b/sd/source/ui/func/fuconnct.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fuconnct.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-09 04:37:45 $ + * last change: $Author: rt $ $Date: 2005-12-14 16:56:15 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -73,6 +73,17 @@ FuConnectionDlg::FuConnectionDlg ( SdDrawDocument* pDoc, SfxRequest& rReq) : FuPoor(pViewSh, pWin, pView, pDoc, rReq) +{ +} + +FunctionReference FuConnectionDlg::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq ) +{ + FunctionReference xFunc( new FuConnectionDlg( pViewSh, pWin, pView, pDoc, rReq ) ); + xFunc->DoExecute(rReq); + return xFunc; +} + +void FuConnectionDlg::DoExecute( SfxRequest& rReq ) { SfxItemSet aNewAttr( pDoc->GetPool() ); pView->GetAttributes( aNewAttr ); -- cgit