[sw-issues] [Issue 96111] 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=96111


User cmc changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from c...@openoffice.org Mon Mar 23 15:20:46 + 
2009 ---
closed, seen in m44

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


User ama changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from a...@openoffice.org Fri Jan 23 13:30:22 + 
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 96111] sw: ambiguous ||

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


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 Fri Jan 16 08:09:48 + 
2009 ---
Ok, ok, you're right.

Fixed in 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 96111] 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=96111


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]



[sw-issues] [Issue 96111] 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=96111


User cmc changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |57896)
suspicious code






--- Additional comments from [EMAIL PROTECTED] Tue Nov 11 16:08:13 + 
2008 ---
Created an attachment (id=57896)
suspicious code


-
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 96111] 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=96111
 Issue #|96111
 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:07:38 + 
2008 ---
This one looks definitely wrong.

in sw/source/ui/docvw/edtwin.cxx we have

if(pACorr 
( pACorr-IsAutoCorrFlag( ChgQuotes )  ('\' == aCh ))||
( pACorr-IsAutoCorrFlag( ChgSglQuotes )  ( '\'' == aCh)))

which means

if( (pACorr 
( pACorr-IsAutoCorrFlag( ChgQuotes )  ('\' == aCh ))) ||
( pACorr-IsAutoCorrFlag( ChgSglQuotes )  ( '\'' == aCh)))

i.e. if pACorr is null we will try and execute pACorr-IsAutoCorrFlag(
ChgSglQuotes )

I suspect we mean

if (
pACorr 
(
 (pACorr-IsAutoCorrFlag(ChgQuotes)  ('\' == aCh)) ||
 (pACorr-IsAutoCorrFlag(ChgSglQuotes)  ('\'' == aCh))
)
   )

patch attached to do that

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