String to rtl::OUString.

This commit is contained in:
Kohei Yoshida
2012-02-09 17:02:33 -05:00
parent 3122799da1
commit 2357da95f1
12 changed files with 81 additions and 82 deletions

View File

@@ -2429,7 +2429,7 @@ DataPilotFieldGroupInfo ScDataPilotFieldObj::getGroupInfo()
ScFieldGroup aGroup;
aGroup.maName = pGroup->GetGroupName();
for( sal_Int32 nMemIdx = 0, nMemCount = pGroup->GetElementCount(); nMemIdx < nMemCount; ++nMemIdx )
if( const String* pMem = pGroup->GetElementByIndex( nMemIdx ) )
if (const rtl::OUString* pMem = pGroup->GetElementByIndex(nMemIdx))
aGroup.maMembers.push_back( *pMem );
aGroups.push_back( aGroup );
}