summaryrefslogtreecommitdiffstats
path: root/i18npool
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-28 16:26:37 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-28 16:26:37 +0100
commit904ee361d615cdbe83202499776477b8f8c0b75c (patch)
treed0cc2a88de6aeccb05e057bff55a4eed9f89dab1 /i18npool
parentReplace suitable equalsAscii calls with equalsAsciiL. (diff)
downloadcore-904ee361d615cdbe83202499776477b8f8c0b75c.tar.gz
core-904ee361d615cdbe83202499776477b8f8c0b75c.zip
Replace suitable equalsAscii calls with equalsAsciiL.
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/localedata/LocaleNode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/localedata/LocaleNode.cxx b/i18npool/source/localedata/LocaleNode.cxx
index 67a2d06672b6..57e01e5ab340 100644
--- a/i18npool/source/localedata/LocaleNode.cxx
+++ b/i18npool/source/localedata/LocaleNode.cxx
@@ -233,7 +233,7 @@ void print_node( const LocaleNode* p, int depth=0 )
void LocaleNode :: generateCode (const OFileWriter &of) const
{
::rtl::OUString aDTD = getAttr().getValueByName("versionDTD");
- if (!aDTD.equalsAscii( LOCALE_VERSION_DTD))
+ if (!aDTD.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(LOCALE_VERSION_DTD)))
{
++nError;
fprintf( stderr, "Error: Locale versionDTD is not %s, see comment in locale.dtd\n", LOCALE_VERSION_DTD);