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


User dr changed the following:

                  What    |Old value                 |New value
================================================================================
                    Status|STARTED                   |RESOLVED
--------------------------------------------------------------------------------
                Resolution|                          |FIXED
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Fri Apr  8 07:10:01 -0700 
2005 -------
Patch fails on wnt platform. Reason: for wnt*, INT8 and sal_Int8 are defined 
equally 
(signed char), but for unx* platforms, INT8 is char, and sal_Int8 is signed 
char. The 
following patch should work on all platforms, because the INT8 version of 
__AddDec() is never used:

--- biffdump.cxx        29 Mar 2005 13:35:36 -0000      1.78
+++ biffdump.cxx        8 Apr 2005 14:02:38 -0000
@@ -280,7 +280,7 @@
        __AddDec( r, ( INT32 ) n );
 }

-inline static void __AddDec( ByteString& r, INT8 n )
+inline static void __AddDec( ByteString& r, sal_Int8 n )
 {
     __AddDec( r, ( INT32 ) n );
 }

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