diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 15:58:28 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 15:58:28 +0000 |
commit | 24ba17870f6e09446743bf931e1591665fb3528c (patch) | |
tree | 3805ca16f1b6995498743520c3b93b019099b4d7 | |
parent | 283dbafda2af64dd0298ff1a1d8179ff3194b7ab (diff) |
INTEGRATION: CWS impressfunctions (1.12.40); FILE MERGED
2005/10/28 10:57:36 cl 1.12.40.1: #125341# reworked FuPoor classes to use refcounting
-rw-r--r-- | sd/source/ui/func/fuexpand.cxx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/sd/source/ui/func/fuexpand.cxx b/sd/source/ui/func/fuexpand.cxx index affbe097fe5a..5a2406889ec8 100644 --- a/sd/source/ui/func/fuexpand.cxx +++ b/sd/source/ui/func/fuexpand.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fuexpand.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: rt $ $Date: 2005-09-09 04:42:52 $ + * last change: $Author: rt $ $Date: 2005-12-14 16:58:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -106,6 +106,17 @@ FuExpandPage::FuExpandPage ( SfxRequest& rReq) : FuPoor(pViewSh, pWin, pView, pDoc, rReq) { +} + +FunctionReference FuExpandPage::Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq ) +{ + FunctionReference xFunc( new FuExpandPage( pViewSh, pWin, pView, pDoc, rReq ) ); + xFunc->DoExecute(rReq); + return xFunc; +} + +void FuExpandPage::DoExecute( SfxRequest& rReq ) +{ // Selektierte Seite finden (nur Standard-Seiten) SdPage* pActualPage = NULL; USHORT i = 0; |