summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/ximpgrp.cxx
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2001-02-02 10:24:54 +0000
committerChristian Lippka <cl@openoffice.org>2001-02-02 10:24:54 +0000
commit2e6afa26b31af327416ad08dc6eee9e437d46035 (patch)
treec207b8d128e6af18f126ce2a13e8162e01a77e56 /xmloff/source/draw/ximpgrp.cxx
parentf470acaff3781ca6ac6cef3a69eb68342f14e5f0 (diff)
#83254# set style on group shape after import
Diffstat (limited to 'xmloff/source/draw/ximpgrp.cxx')
-rw-r--r--xmloff/source/draw/ximpgrp.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/xmloff/source/draw/ximpgrp.cxx b/xmloff/source/draw/ximpgrp.cxx
index 969fe157d0..aa1fd9eca9 100644
--- a/xmloff/source/draw/ximpgrp.cxx
+++ b/xmloff/source/draw/ximpgrp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ximpgrp.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: cl $ $Date: 2000-12-13 19:13:03 $
+ * last change: $Author: cl $ $Date: 2001-02-02 11:24:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -118,10 +118,11 @@ void SdXMLGroupShapeContext::StartElement(const uno::Reference< xml::sax::XAttri
// create new group shape and add it to rShapes, use it
// as base for the new group import
AddShape( "com.sun.star.drawing.GroupShape" );
- SdXMLShapeContext::StartElement(xAttrList);
if(mxShape.is())
{
+ SetStyle();
+
SdXMLShapeContext::StartElement(xAttrList);
mxChilds = uno::Reference< drawing::XShapes >::query( mxShape );
if( mxChilds.is() )