Correct indentation of try block

Change-Id: I32ca961ebb4393e483bab12a6c69ab4c2016cc3f
This commit is contained in:
Tor Lillqvist
2017-03-01 14:59:22 +02:00
parent 79d93c7d11
commit 7dae589b0c

View File

@@ -2200,7 +2200,8 @@ bool SfxObjectShell::ImportFrom(SfxMedium& rMedium,
if ( xLoader.is() ) if ( xLoader.is() )
{ {
// it happens that xLoader does not support xImporter! // it happens that xLoader does not support xImporter!
try{ try
{
uno::Reference< lang::XComponent > xComp( GetModel(), uno::UNO_QUERY_THROW ); uno::Reference< lang::XComponent > xComp( GetModel(), uno::UNO_QUERY_THROW );
uno::Reference< document::XImporter > xImporter( xLoader, uno::UNO_QUERY_THROW ); uno::Reference< document::XImporter > xImporter( xLoader, uno::UNO_QUERY_THROW );
xImporter->setTargetDocument( xComp ); xImporter->setTargetDocument( xComp );