diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:37:51 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:37:51 +0000 |
commit | 7a0909689ffc063ccf847f16ece4a032603c9d23 (patch) | |
tree | 61e295071a4c16270afa9d7798429d90b058f9a2 /sal/textenc/tcvtbyte.c | |
parent | 04aa50e5ff7d6c19b02f15ed75b437f6bfdbd9be (diff) |
INTEGRATION: CWS warnings01 (1.3.12); FILE MERGED
2005/11/07 12:11:30 sb 1.3.12.1: #i53898# Made code warning-free (additional -W switches for GCC).
Diffstat (limited to 'sal/textenc/tcvtbyte.c')
-rw-r--r-- | sal/textenc/tcvtbyte.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/sal/textenc/tcvtbyte.c b/sal/textenc/tcvtbyte.c index eb3819a44c2e..adff659961cb 100644 --- a/sal/textenc/tcvtbyte.c +++ b/sal/textenc/tcvtbyte.c @@ -4,9 +4,9 @@ * * $RCSfile: tcvtbyte.c,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 16:36:17 $ + * last change: $Author: hr $ $Date: 2006-06-20 04:37:51 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -489,6 +489,10 @@ sal_Size ImplSymbolToUnicode( const ImplTextConverterData* pData, sal_Unicode* pEndDestBuf; const sal_Char* pEndSrcBuf; + (void) pData; /* unused */ + (void) pContext; /* unused */ + (void) nFlags; /* unused */ + *pInfo = 0; pEndDestBuf = pDestBuf+nDestChars; pEndSrcBuf = pSrcBuf+nSrcBytes; @@ -527,6 +531,8 @@ sal_Size ImplUnicodeToSymbol( const ImplTextConverterData* pData, sal_Char* pEndDestBuf; const sal_Unicode* pEndSrcBuf; + (void) pContext; /* unused */ + *pInfo = 0; pEndDestBuf = pDestBuf+nDestBytes; pEndSrcBuf = pSrcBuf+nSrcChars; @@ -594,6 +600,8 @@ sal_Size ImplCharToUnicode( const ImplTextConverterData* pData, sal_Unicode* pEndDestBuf; const sal_Char* pEndSrcBuf; + (void) pContext; /* unused */ + *pInfo = 0; pEndDestBuf = pDestBuf+nDestChars; pEndSrcBuf = pSrcBuf+nSrcBytes; @@ -724,6 +732,8 @@ sal_Size ImplUnicodeToChar( const ImplTextConverterData* pData, sal_Char aTempBuf[IMPL_MAX_REPLACECHAR+1]; const sal_uInt16* pReplace; + (void) pContext; /* unused */ + *pInfo = 0; pEndDestBuf = pDestBuf+nDestBytes; pEndSrcBuf = pSrcBuf+nSrcChars; |