From f4bda54cdaf13cf96ff7c9327036568825c8c323 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Mon, 7 Oct 2013 12:15:28 -0400 Subject: 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 --- editeng/source/editeng/editobj.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editeng') 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 -- cgit