diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:42:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:42:49 +0200 |
commit | 018e85387e1ed62ab8188ad4cb0728ee2a0a797c (patch) | |
tree | de497dd3ec2371ebf5e6cdd9732f203938718022 /ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx | |
parent | f785d167b99f0f39c1d3b9424c327eaf0383d0d2 (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I8d1a4fda1cdd679f20de37271f7b832da4fb0c9a
Diffstat (limited to 'ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx')
-rw-r--r-- | ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx b/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx index c9f14f0d8668..a73776697525 100644 --- a/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx +++ b/ucb/source/ucp/webdav-neon/UCBDeadPropertyValue.cxx @@ -315,9 +315,9 @@ bool UCBDeadPropertyValue::supportsType( const uno::Type & rType ) && ( rType != cppu::UnoType<sal_Int16>::get() ) && - ( rType != getCppuBooleanType() ) + ( rType != cppu::UnoType<bool>::get() ) && - ( rType != getCppuCharType() ) + ( rType != cppu::UnoType<cppu::UnoCharType>::get() ) && ( rType != cppu::UnoType<sal_Int8>::get() ) && @@ -452,7 +452,7 @@ bool UCBDeadPropertyValue::toXML( const uno::Any & rInData, aStringValue = OUString::number( nValue ); aStringType = aTypeShort; } - else if ( rType == getCppuBooleanType() ) + else if ( rType == cppu::UnoType<bool>::get() ) { // boolean bool bValue = false; @@ -460,7 +460,7 @@ bool UCBDeadPropertyValue::toXML( const uno::Any & rInData, aStringValue = OUString::boolean( bValue ); aStringType = aTypeBoolean; } - else if ( rType == getCppuCharType() ) + else if ( rType == cppu::UnoType<cppu::UnoCharType>::get() ) { // char sal_Unicode cValue = 0; |