diff options
author | Noel Grandin <noel@peralex.com> | 2013-05-17 11:21:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-05-21 08:23:59 +0200 |
commit | 184c48ee7a4b1c5c6f19a3b9c71bdbc6472068f8 (patch) | |
tree | 5fc5e5e124da13c813b051d29402cd9b7223dd92 /sfx2 | |
parent | 53d083213358b14b465f68339328252560cb1255 (diff) |
Remove unnecessary namespacing
Change-Id: I0ea52709f9a77d928a6704797ebd5be4c375e964
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/objxtor.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
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 ) { |