To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=113314
                 Issue #|113314
                 Summary|sw: && || ambiguity in frmpage.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|os
             Reported by|cmc





------- Additional comments from c...@openoffice.org Wed Jul 21 09:33:30 +0000 
2010 -------
we have...

if ((bNew && !bFormat) || (bValueModified || bCheckChanged) && bLegalValue)

which by precedence becomes 

if ((bNew && !bFormat) || ((bValueModified || bCheckChanged) && bLegalValue))

which looks a little suspicious given the "bLegalValue" which is derived from
aWidthED and aHeightED and code that is being protected goes on to use
aWidthED/aHeightED, so it might have been intended as...

if (((bNew && !bFormat) || (bValueModified || bCheckChanged)) && bLegalValue)

---------------------------------------------------------------------
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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to