diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-07-28 09:05:46 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-07-28 09:07:32 +0300 |
commit | d01c4f3e310ec7dc89f55e286835b8b9516f4298 (patch) | |
tree | 1d968afe4b2109ca85ae1ab9dca5f3f8a11f14dd /sc | |
parent | 39080dfd4f57b1c4d5cd716a661d9368bb6210a3 (diff) |
WaE: equality comparison with extraneous parentheses
Change-Id: I867b95cfcdad653d206998b1c02a34c4b7442ef4
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/tokstack.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/tokstack.cxx b/sc/source/filter/excel/tokstack.cxx index 0cdfc3610895..11383c2a5a65 100644 --- a/sc/source/filter/excel/tokstack.cxx +++ b/sc/source/filter/excel/tokstack.cxx @@ -961,7 +961,7 @@ const String* TokenPool::GetExternal( const TokenId& rId ) const if( n && n <= nElementAkt ) { n--; - if( (pType[ n ] == T_Ext) ) + if( pType[ n ] == T_Ext ) { sal_uInt16 nExt = pElement[ n ]; if ( nExt < nP_Ext && ppP_Ext[ nExt ] ) |