summaryrefslogtreecommitdiff
path: root/uui/source/iahndl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-17 16:01:54 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-18 06:50:54 +0000
commit319c9b90048d894f16236917a509d770a734e0dc (patch)
tree3724d417cd15e7fe1033a82f0e22aaf237f486ce /uui/source/iahndl.cxx
parent7f5c879310ce5add04a7f5d84c9a55e9ffbb5855 (diff)
com::sun::star->css in uui/
Change-Id: I1be458bd5f22014f4720583ff87cf8aad4a07dc8 Reviewed-on: https://gerrit.libreoffice.org/20021 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'uui/source/iahndl.cxx')
-rw-r--r--uui/source/iahndl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx
index 3652d79f80cc..19e63efabcf1 100644
--- a/uui/source/iahndl.cxx
+++ b/uui/source/iahndl.cxx
@@ -302,7 +302,7 @@ namespace
static bool lcl_matchesRequest( const Any& i_rRequest, const OUString& i_rTypeName, const OUString& i_rPropagation )
{
- const ::com::sun::star::uno::TypeDescription aTypeDesc( i_rTypeName );
+ const css::uno::TypeDescription aTypeDesc( i_rTypeName );
const typelib_TypeDescription* pTypeDesc = aTypeDesc.get();
if ( !pTypeDesc || !pTypeDesc->pWeakRef )
{
@@ -315,7 +315,7 @@ namespace
#endif
return false;
}
- const ::com::sun::star::uno::Type aType( pTypeDesc->pWeakRef );
+ const css::uno::Type aType( pTypeDesc->pWeakRef );
const bool bExactMatch = i_rPropagation == "named-only";
if ( bExactMatch )