diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 13:17:16 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 13:17:16 +0000 |
commit | 949fdcdb4607744a14602e49264c911a46c19c52 (patch) | |
tree | 4c27be4fe313c498f3312053cf6f71acf3cfcf5b /svx | |
parent | 05050ffe5ecd36c7522baf6e41b1483571be54ae (diff) |
INTEGRATION: CWS sj05 (1.23.252); FILE MERGED
2004/02/13 18:58:10 sj 1.23.252.4: RESYNC: (1.24-1.25); FILE MERGED
2004/02/05 17:25:01 sj 1.23.252.3: name changes
2003/11/27 16:46:39 sj 1.23.252.2: RESYNC: (1.23-1.24); FILE MERGED
2003/09/12 17:03:17 sj 1.23.252.1: added autoshape functionality
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unopage.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/svx/source/unodraw/unopage.cxx b/svx/source/unodraw/unopage.cxx index 86d87e41fdad..727de1884c20 100644 --- a/svx/source/unodraw/unopage.cxx +++ b/svx/source/unodraw/unopage.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unopage.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.27 $ * - * last change: $Author: rt $ $Date: 2004-03-30 14:33:35 $ + * last change: $Author: rt $ $Date: 2004-04-02 14:17:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -894,6 +894,9 @@ SvxShape* SvxDrawPage::CreateShapeByTypeAndInventor( sal_uInt16 nType, sal_uInt3 case OBJ_UNO: pRet = new SvxShapeControl( pObj ); break; + case OBJ_CUSTOMSHAPE: + pRet = new SvxCustomShape( pObj ); + break; default: // unbekanntes 2D-Objekt auf der Page DBG_ERROR("Nicht implementierter Starone-Shape erzeugt! [CL]"); pRet = new SvxShapeText( pObj ); |