To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88160





------- Additional comments from [EMAIL PROTECTED] Fri Apr 11 08:46:07 +0000 
2008 -------
@saperski:  It needs to be clarified how the bit pattern is written into the
pointer in the first place.  If it is written as all ones (i.e., -1) I would use

  reinterpret_cast< sal_IntPtr >(pItem) != -1

and if it is written as exactly eight ones (with zero or more leading zeros,
depending on pointer size) I would use

  reinterpret_cast< sal_uIntPtr >(pItem) != 0xffffffff

(and maybe it is written as some define or const, in which case I would try to
use that instead of the literal value here, too).

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