summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuconbez.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-12-14 15:55:45 +0000
committerRüdiger Timm <rt@openoffice.org>2005-12-14 15:55:45 +0000
commit3cc1210bbd1bab886a380db36ea47b0cb2e4b039 (patch)
treeca2bafe582ba610737d251bddc27f40a08036275 /sd/source/ui/func/fuconbez.cxx
parentf0deff052ef87690154a50c8ea792aea9c454e3b (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/ui/func/fuconbez.cxx')
-rw-r--r--sd/source/ui/func/fuconbez.cxx20
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 );
}
/*************************************************************************