[util-issues] [Issue 96058] unotools: ambiguous and ||

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


User cmc changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from c...@openoffice.org Wed Feb 25 09:26:32 + 
2009 ---
closed, seen DEV300_m42

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


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



[util-issues] [Issue 96058] unotools: ambiguous and ||

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


User mba changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from m...@openoffice.org Tue Jan 27 11:55:15 + 
2009 ---
@cmc: i've set this to verified as I know you will check this in the master
anyway. :-)

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


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



[util-issues] [Issue 96058] unotools: ambiguous and ||

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


User mba changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Wed Dec  3 09:41:11 + 
2008 ---
Fixed in CWS mba31issues01

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



[util-issues] [Issue 96058] unotools: ambiguous and ||

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


User mba changed the following:

What|Old value |New value

  Status|NEW   |STARTED

Target milestone|---   |OOo 3.1





--- Additional comments from [EMAIL PROTECTED] Tue Nov 18 16:57:01 + 
2008 ---
Yes, it looks as if indeed that the current code is wrong.
Thanks for the patch.

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



[util-issues] [Issue 96058] unotools: ambiguous and ||

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


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]



[util-issues] [Issue 96058] unotools: ambiguous and ||

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


User cmc changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |57841)
what I suspect we w
|  |ant to say






--- Additional comments from [EMAIL PROTECTED] Mon Nov 10 16:44:52 + 
2008 ---
Created an attachment (id=57841)
what I suspect we want to say


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



[util-issues] [Issue 96058] unotools: ambiguous and ||

2008-11-10 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96058
 Issue #|96058
 Summary|unotools: ambiguous  and ||
   Component|utilities
 Version|DEV300m35
Platform|All
 URL|
  OS/Version|Linux
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|fs
 Reported by|cmc





--- Additional comments from [EMAIL PROTECTED] Mon Nov 10 16:43:35 + 
2008 ---
unotools/source/ucbhelper/ucbhelper.cxx has the following code..

BOOL bWild = bAllowWildCards  rName.Search( '*' ) != STRING_NOTFOUND ||
rName.Search( '?' ) != STRING_NOTFOUND;

which precedence-wise binds as...

BOOL bWild = (bAllowWildCards  rName.Search( '*' ) != STRING_NOTFOUND) ||
rName.Search( '?' ) != STRING_NOTFOUND;

(as attachment one would do), but that looks really suspicious, I suspect it
should be 

BOOL bWild = bAllowWildCards  (rName.Search( '*' ) != STRING_NOTFOUND ||
rName.Search( '?' ) != STRING_NOTFOUND);

as attachment two does

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



[util-issues] [Issue 96058] unotools: ambiguous and ||

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


User cmc changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |57840)
what we're currentl
|  |y saying






--- Additional comments from [EMAIL PROTECTED] Mon Nov 10 16:44:22 + 
2008 ---
Created an attachment (id=57840)
what we're currently saying


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



[util-issues] [Issue 96058] unotools: ambiguous and ||

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


User fs changed the following:

What|Old value |New value

 Assigned to|fs|mba





--- Additional comments from [EMAIL PROTECTED] Mon Nov 10 16:54:31 + 
2008 ---
fs-mba: your code, cvs-blame-wise

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