From 184c48ee7a4b1c5c6f19a3b9c71bdbc6472068f8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 17 May 2013 11:21:57 +0200 Subject: Remove unnecessary namespacing Change-Id: I0ea52709f9a77d928a6704797ebd5be4c375e964 --- sfx2/source/doc/objxtor.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'sfx2') diff --git a/sfx2/source/doc/objxtor.cxx b/sfx2/source/doc/objxtor.cxx index 6d2c4b5b30a2..242ec24360c6 100644 --- a/sfx2/source/doc/objxtor.cxx +++ b/sfx2/source/doc/objxtor.cxx @@ -1066,12 +1066,11 @@ SfxObjectShell* SfxObjectShell::CreateObject( const String& rServiceName, SfxObj { if ( rServiceName.Len() ) { - ::com::sun::star::uno::Reference < ::com::sun::star::frame::XModel > xDoc( - ::comphelper::getProcessServiceFactory()->createInstance( rServiceName ), UNO_QUERY ); + uno::Reference < frame::XModel > xDoc( ::comphelper::getProcessServiceFactory()->createInstance( rServiceName ), UNO_QUERY ); if ( xDoc.is() ) { - ::com::sun::star::uno::Reference < ::com::sun::star::lang::XUnoTunnel > xObj( xDoc, UNO_QUERY ); - ::com::sun::star::uno::Sequence < sal_Int8 > aSeq( SvGlobalName( SFX_GLOBAL_CLASSID ).GetByteSequence() ); + uno::Reference < lang::XUnoTunnel > xObj( xDoc, UNO_QUERY ); + uno::Sequence < sal_Int8 > aSeq( SvGlobalName( SFX_GLOBAL_CLASSID ).GetByteSequence() ); sal_Int64 nHandle = xObj->getSomething( aSeq ); if ( nHandle ) { -- cgit