summaryrefslogtreecommitdiff
path: root/i18npool/qa
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-02-24 12:32:14 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-02-24 17:44:31 +0100
commitd5caf6898b384de8465179341e8f0ccf66b06b2b (patch)
tree979dc56521b1baad8d6db4ef336d3c19b8b419d2 /i18npool/qa
parent10f4ddc9a5e28b33ad2bffe6cd3e4aaab920f872 (diff)
loplugin: unused variables
Change-Id: I7fc203900256839e679bf73b717d121fedc42087
Diffstat (limited to 'i18npool/qa')
-rw-r--r--i18npool/qa/cppunit/test_characterclassification.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/i18npool/qa/cppunit/test_characterclassification.cxx b/i18npool/qa/cppunit/test_characterclassification.cxx
index 02f601f9877b..69b6c9f2eaa8 100644
--- a/i18npool/qa/cppunit/test_characterclassification.cxx
+++ b/i18npool/qa/cppunit/test_characterclassification.cxx
@@ -77,7 +77,6 @@ void TestCharacterClassification::testTitleCase()
//tricky one
const sal_Unicode LATINSMALLLETTERDZ[] = { 0x01F3 };
::rtl::OUString aTest(LATINSMALLLETTERDZ, SAL_N_ELEMENTS(LATINSMALLLETTERDZ));
- ::rtl::OUString sTest(aTest);
::rtl::OUString sTitleCase = m_xCC->toTitle(aTest, 0, aTest.getLength(), aLocale);
CPPUNIT_ASSERT_MESSAGE("Should be title", sTitleCase.getLength() == 1 && sTitleCase[0] == 0x01F2);
::rtl::OUString sUpperCase = m_xCC->toUpper(aTest, 0, aTest.getLength(), aLocale);