i#98430: Import at least the shape.
The image that is inside is dropped though, we do not have support for that in editeng. Change-Id: I16dc1656e6f71fd80136bc39233decef4e1d4069
This commit is contained in:
parent
e7808c250f
commit
bebf8ccfba
@ -49,6 +49,7 @@
|
|||||||
#include <svx/svdobj.hxx>
|
#include <svx/svdobj.hxx>
|
||||||
#include <svx/svdpage.hxx>
|
#include <svx/svdpage.hxx>
|
||||||
#include <svx/unoshape.hxx>
|
#include <svx/unoshape.hxx>
|
||||||
|
#include <svx/xmlgrhlp.hxx>
|
||||||
|
|
||||||
#include <com/sun/star/text/textfield/Type.hpp>
|
#include <com/sun/star/text/textfield/Type.hpp>
|
||||||
|
|
||||||
@ -183,6 +184,13 @@ uno::Reference< uno::XInterface > SAL_CALL SvxUnoDrawMSFactory::createInstance(
|
|||||||
return uno::Reference< uno::XInterface >( (drawing::XShape*) SvxDrawPage::CreateShapeByTypeAndInventor( nT, nI ) );
|
return uno::Reference< uno::XInterface >( (drawing::XShape*) SvxDrawPage::CreateShapeByTypeAndInventor( nT, nI ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if ( rServiceSpecifier == "com.sun.star.document.ImportGraphicObjectResolver" )
|
||||||
|
{
|
||||||
|
SvXMLGraphicHelper* pGraphicHelper = SvXMLGraphicHelper::Create( GRAPHICHELPER_MODE_READ );
|
||||||
|
uno::Reference< uno::XInterface> xRet( static_cast< ::cppu::OWeakObject* >( pGraphicHelper ) );
|
||||||
|
pGraphicHelper->release();
|
||||||
|
return xRet;
|
||||||
|
}
|
||||||
|
|
||||||
uno::Reference< uno::XInterface > xRet( createTextField( rServiceSpecifier ) );
|
uno::Reference< uno::XInterface > xRet( createTextField( rServiceSpecifier ) );
|
||||||
if( !xRet.is() )
|
if( !xRet.is() )
|
||||||
|
@ -1167,8 +1167,12 @@ void XMLTextImportHelper::InsertTextContent(
|
|||||||
DBG_ASSERT(m_pImpl->m_xCursorAsRange.is(), "no range");
|
DBG_ASSERT(m_pImpl->m_xCursorAsRange.is(), "no range");
|
||||||
if (m_pImpl->m_xText.is())
|
if (m_pImpl->m_xText.is())
|
||||||
{
|
{
|
||||||
m_pImpl->m_xText->insertTextContent(
|
try {
|
||||||
m_pImpl->m_xCursorAsRange, xContent, sal_False);
|
m_pImpl->m_xText->insertTextContent( m_pImpl->m_xCursorAsRange, xContent, sal_False);
|
||||||
|
} catch ( const lang::IllegalArgumentException & )
|
||||||
|
{
|
||||||
|
SAL_WARN( "xmloff", "Cannot import part of the text - probably an image in the text frame?" );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user