diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-16 15:46:57 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-16 18:49:04 -0200 |
commit | 81e50fb2e378120d05f7ffdee216ce6e248e189b (patch) | |
tree | 0fa6f4779bb3b4970e4720bef4ac36c90514b45c /tools/qa | |
parent | 69d91300547f6ed45a9a499ffae71c2c0f91c441 (diff) |
Fix for fdo43460 Part XXXIX getLength() to isEmpty()
Part XXXIX
Modules
testtools, toolkit, tools
Diffstat (limited to 'tools/qa')
-rw-r--r-- | tools/qa/cppunit/test_stream.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qa/cppunit/test_stream.cxx b/tools/qa/cppunit/test_stream.cxx index 16293d0eafad..cb7d5b24ff23 100644 --- a/tools/qa/cppunit/test_stream.cxx +++ b/tools/qa/cppunit/test_stream.cxx @@ -163,7 +163,7 @@ namespace CPPUNIT_ASSERT(aTwo.equalsL(RTL_CONSTASCII_STRINGPARAM("bar"))); rtl::OString aThree = read_uInt8s_ToOString(aMemStream, 3); - CPPUNIT_ASSERT(!aThree.getLength()); + CPPUNIT_ASSERT(aThree.isEmpty()); aMemStream.Seek(0); |