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





------- Additional comments from [EMAIL PROTECTED] Thu Sep 15 04:34:57 -0700 
2005 -------
Code reviewed.  I spotted three places where a pointer is now converted to
sal_IntPtr prior to being converted to some other, unsigned integral type.  It
would be more consistent to use sal_uIntPtr in those cases:

RCS file: /cvs/sw/sw/source/ui/table/tabledlg.cxx,v
retrieving revision 1.28
retrieving revision 1.28.608.1
diff -r1.28 -r1.28.608.1
616c616
<         sal_uInt32 nDirection = (sal_uInt32)aTextDirectionLB.GetEntryData( 
nPos );
---
>         sal_uInt32 nDirection =
(sal_uInt32)(sal_IntPtr)aTextDirectionLB.GetEntryData( nPos );

RCS file: /cvs/graphics/goodies/source/filter.vcl/icgm/cgm.cxx,v
retrieving revision 1.8
retrieving revision 1.8.90.1
diff -r1.8 -r1.8.90.1
825c825
<               sal_uInt32      nElementSize = 
(sal_uInt32)maDefRepSizeList.First();
---
>               sal_uInt32      nElementSize = 
> (sal_uInt32)(sal_IntPtr)maDefRepSizeList.First();
855c855
<                       nElementSize = (sal_uInt32)maDefRepSizeList.Next();
---
>                       nElementSize = 
> (sal_uInt32)(sal_IntPtr)maDefRepSizeList.Next();

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