diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:41:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:41:10 +0200 |
commit | e1f3391a749873875e2e65bf9f36d242702b8006 (patch) | |
tree | 3b4df0931cb7f1540471e1dafa51a4a18e98eea3 /stoc/source/implementationregistration/implreg.cxx | |
parent | 72a11e4544c900f0b83fbdcae11eb247d65e9666 (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I14b923990a012e8e85ca9170cdffd6b8e3626d89
Diffstat (limited to 'stoc/source/implementationregistration/implreg.cxx')
-rw-r--r-- | stoc/source/implementationregistration/implreg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/implementationregistration/implreg.cxx b/stoc/source/implementationregistration/implreg.cxx index 90d3ce20f684..b78c1f4925bf 100644 --- a/stoc/source/implementationregistration/implreg.cxx +++ b/stoc/source/implementationregistration/implreg.cxx @@ -1361,7 +1361,7 @@ void ImplementationRegistration::initialize( OUStringBuffer buf; buf.append( "ImplementationRegistration::initialize() invalid first parameter," "expected " ); - buf.append( getCppuType( &rLoader ).getTypeName() ); + buf.append( cppu::UnoType<decltype(rLoader)>::get().getTypeName() ); buf.append( ", got " ); buf.append( aArgs.getConstArray()[0].getValueTypeName() ); throw IllegalArgumentException( buf.makeStringAndClear(), @@ -1408,7 +1408,7 @@ void ImplementationRegistration::initialize( OUStringBuffer buf; buf.append( "ImplementationRegistration::initialize() invalid fourth parameter," "expected " ); - buf.append( getCppuType( &rReg ).getTypeName() ); + buf.append( cppu::UnoType<decltype(rReg)>::get().getTypeName() ); buf.append( ", got " ); buf.append( aArgs.getConstArray()[3].getValueTypeName() ); throw IllegalArgumentException( buf.makeStringAndClear(), |