diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:43:13 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:43:13 +0200 |
commit | 0ca607e0674d35dec1412ed470d213a5097d33f0 (patch) | |
tree | 52c5d54a738d680f27f5783ab69e9c28a8873440 /vbahelper | |
parent | 63d4636da8c0bb890016baf22702d944d72c6fd1 (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I5be2bed2203cd3807d3d9659e09e5f60f7a3257c
Diffstat (limited to 'vbahelper')
-rw-r--r-- | vbahelper/source/vbahelper/vbashapes.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/vbahelper/vbashapes.cxx b/vbahelper/source/vbahelper/vbashapes.cxx index bce5b53df962..d7837d2d0499 100644 --- a/vbahelper/source/vbahelper/vbashapes.cxx +++ b/vbahelper/source/vbahelper/vbashapes.cxx @@ -134,7 +134,7 @@ ScVbaShapes::getShapesByArrayIndices( const uno::Any& Index ) throw (uno::Runti uno::Reference< script::XTypeConverter > xConverter = getTypeConverter(mxContext); uno::Any aConverted; - aConverted = xConverter->convertTo( Index, getCppuType((uno::Sequence< uno::Any >*)0) ); + aConverted = xConverter->convertTo( Index, cppu::UnoType<uno::Sequence< uno::Any >>::get() ); uno::Sequence< uno::Any > sIndices; aConverted >>= sIndices; |