X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/b25be06635768807f8f693286fa73bb2297bb06c..4388f060552cc537e71e957d32f35e9d75a61233:/icuSources/common/brkeng.cpp diff --git a/icuSources/common/brkeng.cpp b/icuSources/common/brkeng.cpp index 6d1fa366..b2b2d263 100644 --- a/icuSources/common/brkeng.cpp +++ b/icuSources/common/brkeng.cpp @@ -1,7 +1,7 @@ -/** +/* ************************************************************************************ - * Copyright (C) 2006-2009, International Business Machines Corporation and others. * - * All Rights Reserved. * + * Copyright (C) 2006-2011, International Business Machines Corporation + * and others. All Rights Reserved. ************************************************************************************ */ @@ -130,7 +130,7 @@ ICULanguageBreakFactory::~ICULanguageBreakFactory() { U_NAMESPACE_END U_CDECL_BEGIN static void U_CALLCONV _deleteEngine(void *obj) { - delete (const U_NAMESPACE_QUALIFIER LanguageBreakEngine *) obj; + delete (const icu::LanguageBreakEngine *) obj; } U_CDECL_END U_NAMESPACE_BEGIN @@ -226,6 +226,9 @@ ICULanguageBreakFactory::loadEngineFor(UChar32 c, int32_t breakType) { case USCRIPT_THAI: engine = new ThaiBreakEngine(dict, status); break; + case USCRIPT_KHMER: + engine = new KhmerBreakEngine(dict, status); + break; default: break; }