summaryrefslogtreecommitdiff
path: root/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx')
-rw-r--r--sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx b/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
index b51bfb9a1132..f1a151fdc836 100644
--- a/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
+++ b/sal/qa/rtl/oustringbuffer/test_oustringbuffer_appendchar.cxx
@@ -27,7 +27,7 @@ private:
void AppendChar::testAppendChar() {
// Check that append('a') does not unexpectedly pick
// append(sal_Int32 i, sal_Int16 radix = 10):
- rtl::OUStringBuffer s;
+ OUStringBuffer s;
s.append('a');
CPPUNIT_ASSERT_EQUAL(sal_Int32(1), s.getLength());
CPPUNIT_ASSERT_EQUAL(u'a', s[0]);