summaryrefslogtreecommitdiff
path: root/sw/source/ui/fmtui
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-15 16:23:45 +0200
committerNoel Grandin <noel@peralex.com>2013-10-18 09:59:16 +0200
commit3eeea8b5ddad1e1f3ae59822b132b128557925ae (patch)
treecffbe9d0af2ec3a287ee6681ddf29923a3ffe2fd /sw/source/ui/fmtui
parent111c843ce392b58a1dd0c675dd4ef214535d817c (diff)
convert String vectors to OUString vectors in SW
Change-Id: I431d805f2845830da0fa66f6521c5c7d6b5b10d5
Diffstat (limited to 'sw/source/ui/fmtui')
-rw-r--r--sw/source/ui/fmtui/tmpdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/fmtui/tmpdlg.cxx b/sw/source/ui/fmtui/tmpdlg.cxx
index 855c3f6c3e77..9ed8c830c5d7 100644
--- a/sw/source/ui/fmtui/tmpdlg.cxx
+++ b/sw/source/ui/fmtui/tmpdlg.cxx
@@ -417,13 +417,13 @@ void SwTemplateDlg::PageCreated( sal_uInt16 nId, SfxTabPage &rPage )
SfxStyleSheetBasePool* pPool = pWrtShell->GetView().GetDocShell()->GetStyleSheetPool();
pPool->SetSearchMask(SFX_STYLE_FAMILY_PSEUDO, SFXSTYLEBIT_ALL);
const SfxStyleSheetBase* pBase = pPool->First();
- std::set<String> aNames;
+ std::set<OUString> aNames;
while(pBase)
{
aNames.insert(pBase->GetName());
pBase = pPool->Next();
}
- for(std::set<String>::const_iterator it = aNames.begin(); it != aNames.end(); ++it)
+ for(std::set<OUString>::const_iterator it = aNames.begin(); it != aNames.end(); ++it)
rBox.InsertEntry(*it);
}
else if (nId == m_nAlignId)