[sw-issues] [Issue 96113] sw: ambiguous ||

2009-03-23 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96113


User cmc changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from c...@openoffice.org Mon Mar 23 15:22:15 + 
2009 ---
closed, integrated

-
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



[sw-issues] [Issue 96113] sw: ambiguous ||

2009-01-26 Thread os
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96113


User os changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED

  OS/Version|Linux |All





--- Additional comments from o...@openoffice.org Mon Jan 26 09:03:48 + 
2009 ---
verified in cws sw31bf02

-
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



[sw-issues] [Issue 96113] sw: ambiguous ||

2009-01-23 Thread ama
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96113


User ama changed the following:

What|Old value |New value

 Assigned to|ama   |os





--- Additional comments from a...@openoffice.org Fri Jan 23 13:31:07 + 
2009 ---
Ready for QA ;-)

-
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



[sw-issues] [Issue 96113] sw: ambiguous ||

2009-01-19 Thread ama
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96113


User ama changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED

Target milestone|---   |OOo 3.1





--- Additional comments from a...@openoffice.org Mon Jan 19 08:12:57 + 
2009 ---
Fixed in CWS sw31bf02.

-
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



[sw-issues] [Issue 96113] sw: ambiguous ||

2008-11-11 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96113
 Issue #|96113
 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 16:58:36 + 
2008 ---
in 
sw/source/ui/utlui/navipi.cxx
we have...

if(aTmpParentSize.Width()  aMinSize.Width() ||
 aTmpParentSize.Height()  aMinSize.Height() 
 ((SfxDockingWindow*)pParent)-GetFloatingWindow() 
 !((SfxDockingWindow*)pParent)-GetFloatingWindow()-IsRollUp())

which means (after expanding operator precedence)

if (
 aTmpParentSize.Width()  aMinSize.Width() ||
 (
  aTmpParentSize.Height()  aMinSize.Height() 
  ((SfxDockingWindow*)pParent)-GetFloatingWindow() 
  !((SfxDockingWindow*)pParent)-GetFloatingWindow()-IsRollUp()
 )
)

is that really what we want ?, if so then patch A makes that explicit

or do we really want

if (
(
 aTmpParentSize.Width()  aMinSize.Width() ||
 aTmpParentSize.Height()  aMinSize.Height() 
) 
((SfxDockingWindow*)pParent)-GetFloatingWindow() 
!((SfxDockingWindow*)pParent)-GetFloatingWindow()-IsRollUp()
   )

which is not what we do now, but might be our intention, in which case
attachment 2 makes that explicit

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



[sw-issues] [Issue 96113] sw: ambiguous ||

2008-11-11 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96113


User cmc changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |57899)
version 1, keeps cu
|  |rrent behaviour






--- Additional comments from [EMAIL PROTECTED] Tue Nov 11 16:59:09 + 
2008 ---
Created an attachment (id=57899)
version 1, keeps current behaviour


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



[sw-issues] [Issue 96113] sw: ambiguous ||

2008-11-11 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96113


User cmc changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |57900)
changes current beh
|  |aviour, but might be what 
|  |was intended






--- Additional comments from [EMAIL PROTECTED] Tue Nov 11 16:59:47 + 
2008 ---
Created an attachment (id=57900)
changes current behaviour, but might be what was intended


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



[sw-issues] [Issue 96113] sw: ambiguous ||

2008-11-11 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96113


User cmc changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |96084
  is|  |





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