]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/tolowtrn.cpp
ICU-66108.tar.gz
[apple/icu.git] / icuSources / i18n / tolowtrn.cpp
index 6eab680c60453594c9a76ecfc0a9518954bb1183..289327874e31857556af7b1efc8aae1c62f2322b 100644 (file)
@@ -1,6 +1,8 @@
+// © 2016 and later: Unicode, Inc. and others.
+// License & terms of use: http://www.unicode.org/copyright.html
 /*
 **********************************************************************
-*   Copyright (C) 2001-2004, International Business Machines
+*   Copyright (C) 2001-2007, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 **********************************************************************
 *   Date        Name        Description
@@ -25,8 +27,8 @@ UOBJECT_DEFINE_RTTI_IMPLEMENTATION(LowercaseTransliterator)
 /**
  * Constructs a transliterator.
  */
-LowercaseTransliterator::LowercaseTransliterator(const Locale& theLoc) : 
-    CaseMapTransliterator(theLoc, UNICODE_STRING("Any-Lower", 9), ucase_toFullLower)
+LowercaseTransliterator::LowercaseTransliterator() : 
+    CaseMapTransliterator(UNICODE_STRING("Any-Lower", 9), ucase_toFullLower)
 {
 }
 
@@ -47,16 +49,16 @@ LowercaseTransliterator::LowercaseTransliterator(const LowercaseTransliterator&
 /**
  * Assignment operator.
  */
-LowercaseTransliterator& LowercaseTransliterator::operator=(
+/*LowercaseTransliterator& LowercaseTransliterator::operator=(
                              const LowercaseTransliterator& o) {
     CaseMapTransliterator::operator=(o);
     return *this;
-}
+}*/
 
 /**
  * Transliterator API.
  */
-Transliterator* LowercaseTransliterator::clone(void) const {
+LowercaseTransliterator* LowercaseTransliterator::clone() const {
     return new LowercaseTransliterator(*this);
 }