summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-10-07 12:15:28 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-10-08 15:44:33 -0400
commitf4bda54cdaf13cf96ff7c9327036568825c8c323 (patch)
tree8fa25fe11fdc329e3a8a9b6a2750b75a7dd63577 /editeng
parent6ddcbf4b2fddbb1bad2da05fc6ced1046493d058 (diff)
Re-implement interning in order to return both string arrays.
One is for the cased string and the other one for the non-cased one. Change-Id: I798687f2efecaaea73a09e0b3348f85a9d9e8c07
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/editeng/editobj.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/editobj.cxx b/editeng/source/editeng/editobj.cxx
index 3a5d41c47257..d1e1a6e763c8 100644
--- a/editeng/source/editeng/editobj.cxx
+++ b/editeng/source/editeng/editobj.cxx
@@ -151,7 +151,7 @@ ContentInfo::~ContentInfo()
void ContentInfo::NormalizeString( svl::SharedStringPool& rPool )
{
- aText = OUString(rPool.intern(aText));
+ aText = OUString(rPool.intern(aText).getData());
}
sal_uIntPtr ContentInfo::GetStringID( const svl::SharedStringPool& rPool ) const