summaryrefslogtreecommitdiff
path: root/embeddedobj/source/general
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-05-04 15:50:02 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-05-04 16:12:14 +0200
commited85e11a1bb2e8913e5efc9257ff74bf7543a1df (patch)
tree3ed4f49edef48303f8fd2f34c42d915ab469f0d9 /embeddedobj/source/general
parente1b1f18a6e9f7b2feb5b74d1e80d410be07c294b (diff)
embeddedobj: allow creating objects lacking a FileFormatVersion=6800 filter
dbaccess::ODatabaseDocument::loadFromStorage() is still not implemented, though. Change-Id: I1be11f2a2274f67dd0a11f96a718394d5f72605f
Diffstat (limited to 'embeddedobj/source/general')
-rw-r--r--embeddedobj/source/general/xcreator.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/embeddedobj/source/general/xcreator.cxx b/embeddedobj/source/general/xcreator.cxx
index 4f301d407ce0..8ccff0c81074 100644
--- a/embeddedobj/source/general/xcreator.cxx
+++ b/embeddedobj/source/general/xcreator.cxx
@@ -31,6 +31,7 @@
#include <comphelper/processfactory.hxx>
#include <cppuhelper/supportsservice.hxx>
+#include <comphelper/documentconstants.hxx>
#include <xcreator.hxx>
#include <dummyobject.hxx>
@@ -200,8 +201,14 @@ uno::Reference< uno::XInterface > SAL_CALL UNOEmbeddedObjectCreator::createInsta
OSL_ENSURE( !aMediaType.isEmpty(), "No media type is specified for the object!" );
if ( !aMediaType.isEmpty() && aEmbedFactory.isEmpty() )
+ {
aEmbedFactory = m_aConfigHelper.GetFactoryNameByMediaType( aMediaType );
+ // If no factory is found, fall back to the FileFormatVersion=6200 filter, Base only has that.
+ if (aEmbedFactory.isEmpty() && aMediaType == MIMETYPE_OASIS_OPENDOCUMENT_DATABASE_ASCII)
+ aEmbedFactory = m_aConfigHelper.GetFactoryNameByMediaType(MIMETYPE_VND_SUN_XML_BASE_ASCII);
+ }
+
if ( !aEmbedFactory.isEmpty() )
{
uno::Reference< uno::XInterface > xFact = m_xContext->getServiceManager()->createInstanceWithContext(aEmbedFactory, m_xContext);