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





------- Additional comments from [EMAIL PROTECTED] Tue Nov 11 15:07:32 +0000 
2008 -------
in 
svx/source/dialog/svxruler.cxx

we have...

if(RULER_TYPE_BORDER == eType || RULER_TYPE_TAB == eType ||
 RULER_TYPE_MARGIN1 && pColumnItem)

which is odd, I suspect that we might want RULER_TYPE_MARGIN1 == eType at the
least. After that its not totally clear if we mean

if( RULER_TYPE_BORDER == eType || RULER_TYPE_TAB == eType ||
 (RULER_TYPE_MARGIN1 == eType && pColumnItem) )

or

if( (RULER_TYPE_BORDER == eType || RULER_TYPE_TAB == eType ||
 RULER_TYPE_MARGIN1) && pColumnItem)

Assuming the first one, then the patch attached would do that, but it would
depend on the original intent of the code which I can't 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