From 3eeea8b5ddad1e1f3ae59822b132b128557925ae Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 15 Oct 2013 16:23:45 +0200 Subject: convert String vectors to OUString vectors in SW Change-Id: I431d805f2845830da0fa66f6521c5c7d6b5b10d5 --- sw/source/ui/fmtui/tmpdlg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/ui/fmtui') 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 aNames; + std::set aNames; while(pBase) { aNames.insert(pBase->GetName()); pBase = pPool->Next(); } - for(std::set::const_iterator it = aNames.begin(); it != aNames.end(); ++it) + for(std::set::const_iterator it = aNames.begin(); it != aNames.end(); ++it) rBox.InsertEntry(*it); } else if (nId == m_nAlignId) -- cgit v1.2.3