summaryrefslogtreecommitdiff
path: root/embeddedobj
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2010-12-17 15:11:37 +0100
committerHans-Joachim Lankenau <hjs@openoffice.org>2010-12-17 15:11:37 +0100
commit3ba5da581c7d48f70c613ff7bc1de31f4149b041 (patch)
tree008611e76f6196d566f78d7f1203911bc53e3cd9 /embeddedobj
parentf9c2e642b5f20cc19200aae7158bf71e35c9332b (diff)
parent5ba52810dd0bbb6dfd14660f1e293b1ccb951dc3 (diff)
CWS-TOOLING: integrate CWS chart49
Diffstat (limited to 'embeddedobj')
-rw-r--r--embeddedobj/source/commonembedding/persistence.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/embeddedobj/source/commonembedding/persistence.cxx b/embeddedobj/source/commonembedding/persistence.cxx
index 0312d28315a6..d7ab39f33ecc 100644
--- a/embeddedobj/source/commonembedding/persistence.cxx
+++ b/embeddedobj/source/commonembedding/persistence.cxx
@@ -229,11 +229,11 @@ static uno::Reference< util::XCloseable > CreateDocument( const uno::Reference<
}
catch( const uno::Exception& )
{
- // some of our embedded object implementations (in particular chart) do neither support
- // the EmbeddedObject, nor the EmbeddedScriptSupport argument. Also, they do not support
- // XInitialization, which means the default factory from cppuhelper will throw an
+ // if an embedded object implementation does not support XInitialization,
+ // the default factory from cppuhelper will throw an
// IllegalArgumentException when we try to create the instance with arguments.
// Okay, so we fall back to creating the instance without any arguments.
+ OSL_ASSERT("Consider implementing interface XInitialization to avoid duplicate construction");
xDocument = _rxFactory->createInstance( _rDocumentServiceName );
}