summaryrefslogtreecommitdiff
path: root/oox/source/helper
diff options
context:
space:
mode:
authorRadek Doulik <rodo@novell.com>2011-11-07 11:32:59 +0100
committerRadek Doulik <rodo@novell.com>2011-11-07 12:08:27 +0100
commit959302bfd9093b89916517b6589f64bf86610128 (patch)
tree0e0cda8df17da84b32ab4f55787d25a3162b7325 /oox/source/helper
parent63570788fbeeb7c611528a60abc7d0af04342fa2 (diff)
fixed remaining issues with custom shapes sizing
Diffstat (limited to 'oox/source/helper')
-rw-r--r--oox/source/helper/propertymap.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/helper/propertymap.cxx b/oox/source/helper/propertymap.cxx
index 1877dc7f5243..ec44359b43f3 100644
--- a/oox/source/helper/propertymap.cxx
+++ b/oox/source/helper/propertymap.cxx
@@ -781,12 +781,11 @@ void PropertyMap::dumpCode( Reference< XPropertySet > rXPropSet )
Reference< XPropertySetInfo > info = rXPropSet->getPropertySetInfo ();
Sequence< Property > props = info->getProperties ();
const OUString sType = CREATE_OUSTRING( "Type" );
- const OUString sViewBox = CREATE_OUSTRING( "ViewBox" );
for (int i=0; i < props.getLength (); i++) {
// ignore Type, it is set elsewhere
- if (props[i].Name.equals (sType) || props[i].Name.equals (sViewBox))
+ if (props[i].Name.equals (sType))
continue;
OString name = OUStringToOString( props [i].Name, RTL_TEXTENCODING_UTF8);