Author: paveljanik Date: Sat Apr 13 12:13:27 2013 New Revision: 1467605 URL: http://svn.apache.org/r1467605 Log: Unname unused arguments to prevent WaE issues.
Modified: openoffice/trunk/main/svx/source/xoutdev/xattr2.cxx Modified: openoffice/trunk/main/svx/source/xoutdev/xattr2.cxx URL: http://svn.apache.org/viewvc/openoffice/trunk/main/svx/source/xoutdev/xattr2.cxx?rev=1467605&r1=1467604&r2=1467605&view=diff ============================================================================== --- openoffice/trunk/main/svx/source/xoutdev/xattr2.cxx (original) +++ openoffice/trunk/main/svx/source/xoutdev/xattr2.cxx Sat Apr 13 12:13:27 2013 @@ -359,13 +359,13 @@ SvStream& AffineMatrixItem::Store(SvStre return rStream; } -sal_Bool AffineMatrixItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId ) const +sal_Bool AffineMatrixItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 /* nMemberId */ ) const { rVal <<= maMatrix; return sal_True; } -sal_Bool AffineMatrixItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId ) +sal_Bool AffineMatrixItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 /* nMemberId */ ) { if (rVal >>= maMatrix) {