summaryrefslogtreecommitdiff
path: root/sal/textenc/tcvtmb.c
diff options
context:
space:
mode:
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;