summaryrefslogtreecommitdiff
path: root/i18npool/source/characterclassification
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:43:36 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:43:36 +0000
commit3f2d67769cb09588e1a8f48b8821935901fbf61f (patch)
tree128a8f427df1492dc8baad374940dda5d48b6be9 /i18npool/source/characterclassification
parentd7e704fc5c8f5f0678ad70dbf14966859f0613c9 (diff)
INTEGRATION: CWS warnings01 (1.8.14); FILE MERGED
2005/11/09 20:21:55 pl 1.8.14.1: #i53898# removed warnings
Diffstat (limited to 'i18npool/source/characterclassification')
-rw-r--r--i18npool/source/characterclassification/cclass_unicode.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/source/characterclassification/cclass_unicode.cxx b/i18npool/source/characterclassification/cclass_unicode.cxx
index b68d6b323e7a..b6ba7bb5c4e2 100644
--- a/i18npool/source/characterclassification/cclass_unicode.cxx
+++ b/i18npool/source/characterclassification/cclass_unicode.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: cclass_unicode.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 17:04:48 $
+ * last change: $Author: hr $ $Date: 2006-06-20 04:43:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -139,13 +139,13 @@ cclass_Unicode::getScript( const OUString& Text, sal_Int32 nPos ) throw(RuntimeE
sal_Int32 SAL_CALL
-cclass_Unicode::getCharacterType( const OUString& Text, sal_Int32 nPos, const Locale& rLocale ) throw(RuntimeException) {
+cclass_Unicode::getCharacterType( const OUString& Text, sal_Int32 nPos, const Locale& /*rLocale*/ ) throw(RuntimeException) {
if ( Text.getLength() <= nPos ) return 0;
return unicode::getCharType(Text[nPos]);
}
sal_Int32 SAL_CALL
-cclass_Unicode::getStringType( const OUString& Text, sal_Int32 nPos, sal_Int32 nCount, const Locale& rLocale ) throw(RuntimeException) {
+cclass_Unicode::getStringType( const OUString& Text, sal_Int32 nPos, sal_Int32 nCount, const Locale& /*rLocale*/ ) throw(RuntimeException) {
if ( Text.getLength() <= nPos ) return 0;
if ( Text.getLength() < nPos + nCount )