summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-05-20 18:09:11 +0300
committerTor Lillqvist <tml@iki.fi>2013-05-20 18:09:11 +0300
commit2283f76ec11c6eed757a1f19e033df4adae7dc25 (patch)
tree6774752e339566729e266dcc1609c98ad25467ff /filter
parent7e7ccea7cc91e86d7d345b85940dba16bec36fc4 (diff)
WaE: use of unary operator that may be intended as compound assignment
Change-Id: Ib1718e5d3a0f7f1e4d1941674743900be12d4e1f
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msdffimp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 069b8b3c4fc3..25942ee047d6 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -2766,7 +2766,7 @@ void DffPropertyReader::ImportGradientColor( SfxItemSet& aSet,MSO_FillType eMSO_
nChgColors ^= 1;
else if ( nFocus < 0 )//If it is a negative focus, the color will be swapped
{
- nFocus =- nFocus;
+ nFocus = -nFocus;
nChgColors ^= 1;
}