summaryrefslogtreecommitdiff
path: root/sal/textenc/tcvtmb.c
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:38:02 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:38:02 +0000
commitda592fd02909a186693c55d9680e31c19e6a2de6 (patch)
treeade51a3c05e31f621c48d4fe64f5a4413f2ed156 /sal/textenc/tcvtmb.c
parent7a0909689ffc063ccf847f16ece4a032603c9d23 (diff)
INTEGRATION: CWS warnings01 (1.12.12); FILE MERGED
2005/11/18 09:13:28 sb 1.12.12.2: #i53898# Made code warning-free (in some cases reverting previous attempts). 2005/11/07 12:11:30 sb 1.12.12.1: #i53898# Made code warning-free (additional -W switches for GCC).
Diffstat (limited to 'sal/textenc/tcvtmb.c')
-rw-r--r--sal/textenc/tcvtmb.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/sal/textenc/tcvtmb.c b/sal/textenc/tcvtmb.c
index 57b98e27b300..5522c4d82b22 100644
--- a/sal/textenc/tcvtmb.c
+++ b/sal/textenc/tcvtmb.c
@@ -4,9 +4,9 @@
*
* $RCSfile: tcvtmb.c,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 16:41:13 $
+ * last change: $Author: hr $ $Date: 2006-06-20 04:38:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -68,6 +68,8 @@ sal_Size ImplDBCSToUnicode( const ImplTextConverterData* pData, void* pContext,
sal_Unicode* pEndDestBuf;
const sal_Char* pEndSrcBuf;
+ (void) pContext; /* unused */
+
*pInfo = 0;
pEndDestBuf = pDestBuf+nDestChars;
pEndSrcBuf = pSrcBuf+nSrcBytes;
@@ -256,6 +258,8 @@ sal_Size ImplUnicodeToDBCS( const ImplTextConverterData* pData, void* pContext,
EUC-KR, which uses the MS-949 tables, but does not support the full
range of MS-949 */
+ (void) pContext; /* unused */
+
*pInfo = 0;
pEndDestBuf = pDestBuf+nDestBytes;
pEndSrcBuf = pSrcBuf+nSrcChars;
@@ -417,6 +421,8 @@ sal_Size ImplEUCJPToUnicode( const ImplTextConverterData* pData,
sal_Unicode* pEndDestBuf;
const sal_Char* pEndSrcBuf;
+ (void) pContext; /* unused */
+
*pInfo = 0;
pEndDestBuf = pDestBuf+nDestChars;
pEndSrcBuf = pSrcBuf+nSrcBytes;
@@ -580,6 +586,8 @@ sal_Size ImplUnicodeToEUCJP( const ImplTextConverterData* pData,
sal_Char* pEndDestBuf;
const sal_Unicode* pEndSrcBuf;
+ (void) pContext; /* unused */
+
*pInfo = 0;
pEndDestBuf = pDestBuf+nDestBytes;
pEndSrcBuf = pSrcBuf+nSrcChars;