diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-03-21 09:32:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-03-21 09:32:19 +0000 |
commit | 958de4c111c572936c31f0356089529f6d2b9297 (patch) | |
tree | dd3c80b0d2d0af87abade04a4cfaf0b7c92445a9 /basic | |
parent | aac91a564fa39953c25d07033f8d22b43d241233 (diff) |
WaE: remove unused return values
Diffstat (limited to 'basic')
-rwxr-xr-x | basic/source/comp/codegen.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/basic/source/comp/codegen.cxx b/basic/source/comp/codegen.cxx index 83d1a1965840..0ca6667c88a1 100755 --- a/basic/source/comp/codegen.cxx +++ b/basic/source/comp/codegen.cxx @@ -243,15 +243,13 @@ void SbiCodeGen::Save() String aPropName = pProc->GetPropName(); if( nPass == 1 ) aPropName = aPropName.Copy( aIfaceName.Len() + 1 ); - SbProcedureProperty* pProcedureProperty = NULL; - OSL_TRACE("*** getProcedureProperty for thing %s", + OSL_TRACE("*** getProcedureProperty for thing %s", rtl::OUStringToOString( aPropName,RTL_TEXTENCODING_UTF8 ).getStr() ); - pProcedureProperty = rMod.GetProcedureProperty( aPropName, ePropType ); + rMod.GetProcedureProperty( aPropName, ePropType ); } if( nPass == 1 ) { - SbIfaceMapperMethod* pMapperMeth = NULL; - pMapperMeth = rMod.GetIfaceMapperMethod( aProcName, pMeth ); + rMod.GetIfaceMapperMethod( aProcName, pMeth ); } else { |