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





------- Additional comments from [EMAIL PROTECTED] Tue Nov 11 15:53:57 +0000 
2008 -------
& has precedence of |, so in 
sw/source/core/layout/frmtool.cxx
we have

 !((pLay->GetType()&FRM_FLY|FRM_SECTION)

which is effectively 

 !(((pLay->GetType()&FRM_FLY)|FRM_SECTION)

is that really want we intend ? or do we mean

 !((pLay->GetType()&(FRM_FLY|FRM_SECTION))

Guessing that it is the latter, then the following patch would make it the
second option. Otherwise an extra bracket or two I guess.

---------------------------------------------------------------------
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