summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:39:38 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:39:38 +0000
commit97fb78701713c720fa146b05af6a26ecf5acf639 (patch)
tree1552d4e5c417b2ee1a4a839534dff30bf4ca0341 /sal
parent38a02699e5e43f9dd253dd5521f1cd0a9ec1cd47 (diff)
INTEGRATION: CWS warnings01 (1.2.12); FILE MERGED
2005/11/18 09:13:30 sb 1.2.12.1: #i53898# Made code warning-free (in some cases reverting previous attempts).
Diffstat (limited to 'sal')
-rw-r--r--sal/textenc/unichars.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/sal/textenc/unichars.h b/sal/textenc/unichars.h
index 690c09e3a4c4..1f947881d8eb 100644
--- a/sal/textenc/unichars.h
+++ b/sal/textenc/unichars.h
@@ -4,9 +4,9 @@
*
* $RCSfile: unichars.h,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 16:47:03 $
+ * last change: $Author: hr $ $Date: 2006-06-20 04:39:38 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -46,17 +46,17 @@ extern "C" {
#define RTL_TEXTENC_UNICODE_REPLACEMENT_CHARACTER 0xFFFD
-sal_Bool ImplIsNoncharacter(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
+int ImplIsNoncharacter(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
-sal_Bool ImplIsControlOrFormat(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
+int ImplIsControlOrFormat(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
-sal_Bool ImplIsHighSurrogate(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
+int ImplIsHighSurrogate(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
-sal_Bool ImplIsLowSurrogate(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
+int ImplIsLowSurrogate(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
-sal_Bool ImplIsPrivateUse(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
+int ImplIsPrivateUse(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
-sal_Bool ImplIsZeroWidth(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
+int ImplIsZeroWidth(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();
sal_uInt32 ImplGetHighSurrogate(sal_uInt32 nUtf32) SAL_THROW_EXTERN_C();