diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 15:54:33 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 15:54:33 +0000 |
commit | b6ddf11f2d2b7b390765f36a29e389a8c67c3cdd (patch) | |
tree | 2cac80259bf0084a9a755f7d0489cd6a31d48f97 /sd/source/ui/func/fuarea.cxx | |
parent | c3a7aa5f3a7f5a134fd7e8cf1ee99a5ef36e05a7 (diff) |
INTEGRATION: CWS impressfunctions (1.5.40); FILE MERGED
2005/10/28 10:57:33 cl 1.5.40.1: #125341# reworked FuPoor classes to use refcounting
Diffstat (limited to 'sd/source/ui/func/fuarea.cxx')
-rw-r--r-- | sd/source/ui/func/fuarea.cxx | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/sd/source/ui/func/fuarea.cxx b/sd/source/ui/func/fuarea.cxx index 627896edda64..306eb5a5f6a1 100644 --- a/sd/source/ui/func/fuarea.cxx +++ b/sd/source/ui/func/fuarea.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fuarea.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-09 04:33:39 $ + * last change: $Author: rt $ $Date: 2005-12-14 16:54:33 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -83,13 +83,19 @@ TYPEINIT1( FuArea, FuPoor ); |* \************************************************************************/ -FuArea::FuArea ( - ViewShell* pViewSh, - ::sd::Window* pWin, - ::sd::View* pView, - SdDrawDocument* pDoc, - SfxRequest& rReq) - : FuPoor(pViewSh, pWin, pView, pDoc, rReq) +FuArea::FuArea( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq) +: FuPoor(pViewSh, pWin, pView, pDoc, rReq) +{ +} + +FunctionReference FuArea::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq ) +{ + FunctionReference xFunc( new FuArea( pViewSh, pWin, pView, pDoc, rReq ) ); + xFunc->DoExecute(rReq); + return xFunc; +} + +void FuArea::DoExecute( SfxRequest& rReq ) { const SfxItemSet* pArgs = rReq.GetArgs(); @@ -141,4 +147,12 @@ FuArea::FuArea ( } +void FuArea::Activate() +{ +} + +void FuArea::Deactivate() +{ +} + } // end of namespace sd |