diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-03-02 11:51:19 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-03-02 12:09:28 +0200 |
commit | 40a5db084d3ef5074225e1cb54186bdac355223c (patch) | |
tree | 3f267e69d7a51226e9efcc66b8452f88698cbb4e /sd | |
parent | 17c60594fad636edcc26fb4c4b884aa1d5c84eb2 (diff) |
WaE: equality comparison with extraneous parentheses
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/xml/sdxmlwrp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/xml/sdxmlwrp.cxx b/sd/source/filter/xml/sdxmlwrp.cxx index 388774744bc9..dd9c0c957e8c 100644 --- a/sd/source/filter/xml/sdxmlwrp.cxx +++ b/sd/source/filter/xml/sdxmlwrp.cxx @@ -811,7 +811,7 @@ sal_Bool SdXMLFilter::Import( ErrCode& nError ) bool bTransform = false; - if( (nRet == 0) ) + if( nRet == 0 ) { if( !sBuildId.isEmpty() ) { |