summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/tools/tqlocale.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/src/tools/tqlocale.cpp')
-rw-r--r--tqtinterface/qt4/src/tools/tqlocale.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tqtinterface/qt4/src/tools/tqlocale.cpp b/tqtinterface/qt4/src/tools/tqlocale.cpp
index 69c8c39..e91cab8 100644
--- a/tqtinterface/qt4/src/tools/tqlocale.cpp
+++ b/tqtinterface/qt4/src/tools/tqlocale.cpp
@@ -1903,7 +1903,7 @@ const char* TQLocalePrivate::systemLocaleName()
return lang;
}
-static const TQLocalePrivate *tqfindLocale(TQLocale::Language language,
+static const TQLocalePrivate *findLocale(TQLocale::Language language,
TQLocale::Country country)
{
unsigned language_id = (unsigned)language;
@@ -1965,7 +1965,7 @@ static const TQLocalePrivate *tqfindLocale(TQLocale::Language language,
\i TQString::toDouble() interprets the string according to the default
locale. If this fails, it falls back on the "C" locale.
\i TQString::arg() uses the default locale to format a number when
- its position specifier in the format string tqcontains an 'L',
+ its position specifier in the format string contains an 'L',
e.g. "%L1".
\endlist
@@ -2504,7 +2504,7 @@ TQLocale::TQLocale(const TQString &name)
cntry = codeToCountry(name.mid(3, 2));
} while (FALSE);
- d = tqfindLocale(lang, cntry);
+ d = findLocale(lang, cntry);
}
/*!
@@ -2542,7 +2542,7 @@ TQLocale::TQLocale()
TQLocale::TQLocale(Language language, Country country)
{
- d = tqfindLocale(language, country);
+ d = findLocale(language, country);
// If not found, should default to system
if (d->languageId() == TQLocale::C && language != TQLocale::C) {