ICU-3905 Fix some compiler warnings.

X-SVN-Rev: 16209
This commit is contained in:
George Rhoten 2004-08-28 04:42:33 +00:00
parent fe5df86581
commit 4b9b1afde3
11 changed files with 22 additions and 22 deletions

View File

@ -64,7 +64,7 @@ public:
/**
* Transliterator API.
*/
Transliterator* clone() const;
virtual Transliterator* clone() const;
/**
* Implements {@link Transliterator#handleTransliterate}.

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 1999-2003, International Business Machines
* Copyright (C) 1999-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -115,7 +115,7 @@ public:
* Transliterator API.
* @internal Use transliterator factory methods instead since this class will be removed in that release.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* Returns the number of transliterators in this chain.

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 2001-2003, International Business Machines
* Copyright (C) 2001-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -51,7 +51,7 @@ public:
* Transliterator API.
* @return A copy of the object.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 2001-2003, International Business Machines
* Copyright (C) 2001-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -56,7 +56,7 @@ class U_I18N_API NormalizationTransliterator : public Transliterator {
* Transliterator API.
* @return A copy of the object.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (c) 2000-2003, International Business Machines
* Copyright (c) 2000-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -55,7 +55,7 @@ public:
* Transliterator API.
* @internal Use transliterator factory methods instead since this class will be removed in that release.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* Implements {@link Transliterator#handleTransliterate}.

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 1999-2003, International Business Machines
* Copyright (C) 1999-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -394,7 +394,7 @@ public:
* Implement Transliterator API.
* @internal Use transliterator factory methods instead since this class will be removed in that release.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
protected:
/**

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (c) 2001-2003, International Business Machines
* Copyright (c) 2001-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -45,7 +45,7 @@ public:
* Transliterator API.
* @return A copy of the object.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* Implements {@link Transliterator#handleTransliterate}.

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 2001-2003, International Business Machines
* Copyright (C) 2001-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -54,7 +54,7 @@ class U_I18N_API TitlecaseTransliterator : public Transliterator {
* Transliterator API.
* @return a copy of the object.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
@ -81,7 +81,7 @@ class U_I18N_API TitlecaseTransliterator : public Transliterator {
* @param incremental if true, assume more text may be coming after
* pos.contextLimit. Otherwise, assume the text is complete.
*/
void handleTransliterate(Replaceable& text, UTransPosition& offset,
virtual void handleTransliterate(Replaceable& text, UTransPosition& offset,
UBool isIncremental) const;
public:

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 2001-2003, International Business Machines
* Copyright (C) 2001-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -53,7 +53,7 @@ class U_I18N_API LowercaseTransliterator : public Transliterator {
* Transliterator API.
* @return a copy of the object.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 2001-2003, International Business Machines
* Copyright (C) 2001-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -53,7 +53,7 @@ class U_I18N_API UppercaseTransliterator : public Transliterator {
* Transliterator API.
* @return a copy of the object.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.

View File

@ -1,6 +1,6 @@
/*
**********************************************************************
* Copyright (C) 2001-2003, International Business Machines
* Copyright (C) 2001-2004, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
@ -51,7 +51,7 @@ class U_I18N_API UnicodeNameTransliterator : public Transliterator {
/**
* Transliterator API.
*/
Transliterator* clone(void) const;
virtual Transliterator* clone(void) const;
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.