]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/tolowtrn.cpp
ICU-64260.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / tolowtrn.cpp
index 6eab680c60453594c9a76ecfc0a9518954bb1183..6dae6f109beb9949ab84c42cd966238423bd6730 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,11 +49,11 @@ LowercaseTransliterator::LowercaseTransliterator(const LowercaseTransliterator&
 /**
  * Assignment operator.
  */
-LowercaseTransliterator& LowercaseTransliterator::operator=(
+/*LowercaseTransliterator& LowercaseTransliterator::operator=(
                              const LowercaseTransliterator& o) {
     CaseMapTransliterator::operator=(o);
     return *this;
-}
+}*/
 
 /**
  * Transliterator API.