diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 15:55:45 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 15:55:45 +0000 |
commit | 3cc1210bbd1bab886a380db36ea47b0cb2e4b039 (patch) | |
tree | ca2bafe582ba610737d251bddc27f40a08036275 /sd/source | |
parent | f0deff052ef87690154a50c8ea792aea9c454e3b (diff) |
INTEGRATION: CWS impressfunctions (1.11.38); FILE MERGED
2005/10/28 10:57:34 cl 1.11.38.1: #125341# reworked FuPoor classes to use refcounting
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/func/fuconbez.cxx | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/sd/source/ui/func/fuconbez.cxx b/sd/source/ui/func/fuconbez.cxx index 9d5fb45d56f7..507bf37ab6c6 100644 --- a/sd/source/ui/func/fuconbez.cxx +++ b/sd/source/ui/func/fuconbez.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fuconbez.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: rt $ $Date: 2005-09-09 04:36:25 $ + * last change: $Author: rt $ $Date: 2005-12-14 16:55:45 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -106,14 +106,18 @@ FuConstructBezierPolygon::FuConstructBezierPolygon ( { } -/************************************************************************* -|* -|* Destruktor -|* -\************************************************************************/ +FunctionReference FuConstructBezierPolygon::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq, bool bPermanent ) +{ + FuConstructBezierPolygon* pFunc; + FunctionReference xFunc( pFunc = new FuConstructBezierPolygon( pViewSh, pWin, pView, pDoc, rReq ) ); + xFunc->DoExecute(rReq); + pFunc->SetPermanent(bPermanent); + return xFunc; +} -FuConstructBezierPolygon::~FuConstructBezierPolygon() +void FuConstructBezierPolygon::DoExecute( SfxRequest& rReq ) { + FuConstruct::DoExecute( rReq ); } /************************************************************************* |