[Libreoffice-commits] core.git: vcl/source

Tor Lillqvist tml at iki.fi
Tue Feb 19 09:13:42 PST 2013


 vcl/source/filter/wmf/winmtf.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9e7f056bd08b18d084497b0846c7c8f31b82f58a
Author: Tor Lillqvist <tml at iki.fi>
Date:   Tue Feb 19 18:52:17 2013 +0200

    WaE: equality comparison with extraneous parentheses
    
    Change-Id: I3120fbc031dfa018282150addce6e5fe03aaf5da

diff --git a/vcl/source/filter/wmf/winmtf.cxx b/vcl/source/filter/wmf/winmtf.cxx
index fcfd07f..424004f 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);
         }


More information about the Libreoffice-commits mailing list