diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-03-22 14:57:27 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-03-22 15:16:03 +0100 |
commit | e938a41ac0da617f20bb3df0f86dfd8476bf88e7 (patch) | |
tree | 227b7e4d1d9b21a5a9970a25019d6c91fe08e5ee /oox | |
parent | 474b2ea601f7fa2f1fbeae0f169ff5b8abc965be (diff) |
oox: no need to dump these here
writeAppProperties() already uses this data as necessary.
Change-Id: I5eea399ae2cfa37dc3a7c80114f5265fb4a0c648
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/core/xmlfilterbase.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/oox/source/core/xmlfilterbase.cxx b/oox/source/core/xmlfilterbase.cxx index 9c7ee32f3478..b8fcfdbd4ee0 100644 --- a/oox/source/core/xmlfilterbase.cxx +++ b/oox/source/core/xmlfilterbase.cxx @@ -686,20 +686,6 @@ XmlFilterBase& XmlFilterBase::exportDocumentProperties( Reference< XDocumentProp { writeCoreProperties( *this, xProperties ); writeAppProperties( *this, xProperties ); - Sequence< ::com::sun::star::beans::NamedValue > aStats = xProperties->getDocumentStatistics(); - OSL_TRACE( "# Document Statistics:" ); - for( sal_Int32 i = 0, end = aStats.getLength(); i < end; ++i ) - { - ::com::sun::star::uno::Any aValue = aStats[ i ].Value; - OUString sValue; - bool bHaveString = aValue >>= sValue; - OSL_TRACE ("#\t%s=%s [%s]\n", - OUStringToOString( aStats[ i ].Name, RTL_TEXTENCODING_UTF8 ).getStr(), - bHaveString - ? OUStringToOString( sValue, RTL_TEXTENCODING_UTF8 ).getStr() - : "<unconvertable>", - OUStringToOString( aValue.getValueTypeName(), RTL_TEXTENCODING_UTF8 ).getStr()); - } } return *this; } |