diff options
Diffstat (limited to 'sd/inc/sderror.hxx')
-rwxr-xr-x[-rw-r--r--] | sd/inc/sderror.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/inc/sderror.hxx b/sd/inc/sderror.hxx index 2564584cb3eb..daceb72226c3 100644..100755 --- a/sd/inc/sderror.hxx +++ b/sd/inc/sderror.hxx @@ -49,12 +49,12 @@ #ifndef __RSC -inline FASTBOOL IsWarning( ULONG nErr ) +inline FASTBOOL IsWarning( sal_uLong nErr ) { return 0 != ( nErr & ERRCODE_WARNING_MASK & nErr ); } -inline FASTBOOL IsError( ULONG nErr ) +inline FASTBOOL IsError( sal_uLong nErr ) { return nErr && 0 == ( ERRCODE_WARNING_MASK & nErr ); } |