summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-05-03 12:34:42 +0000
committerRüdiger Timm <rt@openoffice.org>2004-05-03 12:34:42 +0000
commitc9964367dc7468d616ff676b2d76670a6af4f065 (patch)
tree22f4634cdb4ace6107fe442bea75207ea8313839
parent5989144c03363e277cbcea533e0404f2c5c1a3ab (diff)
INTEGRATION: CWS binfilter (1.56.50); FILE MERGED
2003/08/08 10:42:48 aw 1.56.50.2: RESYNC: (1.56-1.57); FILE MERGED 2003/07/11 14:10:13 aw 1.56.50.1: #110680# same reaction for binfilter chart type as for normal chart type
-rw-r--r--xmloff/source/draw/shapeexport.cxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx
index 8f8243076d25..936090a10272 100644
--- a/xmloff/source/draw/shapeexport.cxx
+++ b/xmloff/source/draw/shapeexport.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: shapeexport.cxx,v $
*
- * $Revision: 1.59 $
+ * $Revision: 1.60 $
*
- * last change: $Author: rt $ $Date: 2004-04-02 13:53:00 $
+ * last change: $Author: rt $ $Date: 2004-05-03 13:34:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -993,7 +993,12 @@ void XMLShapeExport::ImpCalcShapeType(const uno::Reference< drawing::XShape >& x
{
eShapeType = XmlShapeTypeDrawChartShape;
}
- else if (sCLSID.equals(rtl::OUString( SvGlobalName( SO3_SC_CLASSID ).GetHexName())))
+ else if (
+ sCLSID.equals(rtl::OUString( SvGlobalName( SO3_SC_CLASSID ).GetHexName()))
+ // #110680#
+ // same reaction for binfilter
+ || sCLSID.equals(rtl::OUString( SvGlobalName( BF_SO3_SC_CLASSID ).GetHexName()))
+ )
{
eShapeType = XmlShapeTypeDrawTableShape;
}