diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:43:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:43:33 +0200 |
commit | a0c46d2f20989bab56a7bc95409d0043a3f323c7 (patch) | |
tree | 3058ac0d31b01b4d4d2fb4ab79649a6490b7cd3a /xmloff/source/text/XMLTextShapeStyleContext.cxx | |
parent | 2b1d22e1ff6ea5ef7a53783617a45309d7426f07 (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: Ic3764caeeb2cdec397071706845bf8517c848917
Diffstat (limited to 'xmloff/source/text/XMLTextShapeStyleContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLTextShapeStyleContext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/XMLTextShapeStyleContext.cxx b/xmloff/source/text/XMLTextShapeStyleContext.cxx index a59f200c2d68..59351c5b8b36 100644 --- a/xmloff/source/text/XMLTextShapeStyleContext.cxx +++ b/xmloff/source/text/XMLTextShapeStyleContext.cxx @@ -215,7 +215,7 @@ void XMLTextShapeStyleContext::CreateAndInsert( bool bOverwrite ) { Any aAny; sal_Bool bTmp = bAutoUpdate; - aAny.setValue( &bTmp, ::getBooleanCppuType() ); + aAny.setValue( &bTmp, cppu::UnoType<bool>::get() ); xPropSet->setPropertyValue( sIsAutoUpdate, aAny ); } |