diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-02-19 18:52:17 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-02-19 19:13:16 +0200 |
commit | 9e7f056bd08b18d084497b0846c7c8f31b82f58a (patch) | |
tree | 634bed724b6a9dbbadbc23a59d0d88f9f18e7310 /vcl | |
parent | bcaa4cd4f3be07f9211b51da4d258b61423f1e28 (diff) |
WaE: equality comparison with extraneous parentheses
Change-Id: I3120fbc031dfa018282150addce6e5fe03aaf5da
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/wmf/winmtf.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/wmf/winmtf.cxx b/vcl/source/filter/wmf/winmtf.cxx index fcfd07f4911b..424004febdf4 100644 --- a/vcl/source/filter/wmf/winmtf.cxx +++ b/vcl/source/filter/wmf/winmtf.cxx @@ -2008,7 +2008,7 @@ void WinMtfOutput::SetDevByWin() //mnWinExt...-stuff has to be assigned before. { if (!mbIsMapDevSet) { - if ((mnMapMode == MM_ISOTROPIC) ) //TODO: WHAT ABOUT ANISOTROPIC??? + if ( mnMapMode == MM_ISOTROPIC ) //TODO: WHAT ABOUT ANISOTROPIC??? { SetDevExt(Size((mnWinExtX+mnWinOrgX)>>MS_FIXPOINT_BITCOUNT_28_4,-((mnWinExtY-mnWinOrgY)>>MS_FIXPOINT_BITCOUNT_28_4)),sal_False); } |