To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=113325
                 Issue #|113325
                 Summary|sw: && || ambiguity in calcmove.cxx
               Component|Word processor
                 Version|DEV300m84
                Platform|All
                     URL|
              OS/Version|Linux
                  Status|NEW
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|PATCH
                Priority|P3
            Subcomponent|code
             Assigned to|od
             Reported by|cmc





------- Additional comments from [email protected] Wed Jul 21 10:56:28 +0000 
2010 -------
in calcmove.cxx we have...

if ( bFly && 
    WEIT_WECH == pObj->GetObjRect().Width()||
    rFmt.GetFrmSize().GetWidthPercent() )

by precedence that's 

if ( (bFly && WEIT_WECH == pObj->GetObjRect().Width()) ||
    rFmt.GetFrmSize().GetWidthPercent() )

is that what we want (i.e. version1 patch) ? I guess there's a small outside
chance we might have intended...

if ( bFly && 
    (WEIT_WECH == pObj->GetObjRect().Width() ||
    rFmt.GetFrmSize().GetWidthPercent()) )

?

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to