diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-11 08:39:01 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-11 10:49:24 +0200 |
commit | bc80f951c14208eae6060fe2e6a941f9dd2d619c (patch) | |
tree | fb6e3f0523c0c562951ea5fa7b6f654726d1b443 /basic/source/classes/sbunoobj.cxx | |
parent | 1b26a4eb4ba99cb4a47da83c4e6419f2065f9d17 (diff) |
loplugin:unusedmethods unused return value in basic
Change-Id: I0ccbf994d2c9be35f43fc3c62e60da90634bacdf
Diffstat (limited to 'basic/source/classes/sbunoobj.cxx')
-rw-r--r-- | basic/source/classes/sbunoobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index 5bea51795de9..0038dbc696c1 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -4754,9 +4754,9 @@ Any StructRefInfo::getValue() return aRet; } -bool StructRefInfo::setValue( const Any& rValue ) +void StructRefInfo::setValue( const Any& rValue ) { - return uno_type_assignData( getInst(), + uno_type_assignData( getInst(), maType.getTypeLibType(), const_cast<void*>(rValue.getValue()), rValue.getValueTypeRef(), |