WaE: remove unused return values

This commit is contained in:
Caolán McNamara 2011-03-21 09:32:19 +00:00
parent aac91a564f
commit 958de4c111

View file

@ -243,15 +243,13 @@ void SbiCodeGen::Save()
String aPropName = pProc->GetPropName(); String aPropName = pProc->GetPropName();
if( nPass == 1 ) if( nPass == 1 )
aPropName = aPropName.Copy( aIfaceName.Len() + 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() ); rtl::OUStringToOString( aPropName,RTL_TEXTENCODING_UTF8 ).getStr() );
pProcedureProperty = rMod.GetProcedureProperty( aPropName, ePropType ); rMod.GetProcedureProperty( aPropName, ePropType );
} }
if( nPass == 1 ) if( nPass == 1 )
{ {
SbIfaceMapperMethod* pMapperMeth = NULL; rMod.GetIfaceMapperMethod( aProcName, pMeth );
pMapperMeth = rMod.GetIfaceMapperMethod( aProcName, pMeth );
} }
else else
{ {