diff -r bc5a64e5bc3c -r 377c906a8701 phoneapp/phoneuiqtviewadapter/tsrc/ut_phonebubblewrapper/unit_tests.cpp --- a/phoneapp/phoneuiqtviewadapter/tsrc/ut_phonebubblewrapper/unit_tests.cpp Tue Jul 06 14:15:47 2010 +0300 +++ b/phoneapp/phoneuiqtviewadapter/tsrc/ut_phonebubblewrapper/unit_tests.cpp Fri Jul 09 15:40:55 2010 +0300 @@ -204,7 +204,7 @@ void TestPhoneBubbleWrapper::testSetCli () { _LIT (KTestText, "Test Name"); - m_wrapper->setCli (3, KTestText); + m_wrapper->setCli (3, KTestText, Qt::ElideRight); QCOMPARE (m_int, 3); QCOMPARE (m_string, QString ("Test Name")); QCOMPARE (m_elideMode, Qt::ElideRight); @@ -213,7 +213,7 @@ void TestPhoneBubbleWrapper::testSetSecondaryCli () { _LIT (KTestText, "Test Name"); - m_wrapper->setSecondaryCli (4, KTestText); + m_wrapper->setSecondaryCli (4, KTestText, Qt::ElideLeft); QCOMPARE (m_int, 4); QCOMPARE (m_string, QString ("Test Name")); QCOMPARE (m_elideMode, Qt::ElideLeft);