summaryrefslogtreecommitdiff
path: root/xmloff/source/style/impastpl.cxx
diff options
context:
space:
mode:
authorRyan McCoskrie <ryan.mccoskrie@gmail.com>2016-04-18 12:38:47 +1200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-18 07:19:09 +0000
commite781dfe877ac12c214e306a89f0702c117c89197 (patch)
treea8ba630183995701c81833cfd69b512c434f15d0 /xmloff/source/style/impastpl.cxx
parenta6af1b545a6435ec3fdbc88e39bf765839f8614b (diff)
Remove needless typedef from xmloff/source/style/impastpl.hxx
Change-Id: I573f7933c6353ae92774517a522fc63f871a09fb Reviewed-on: https://gerrit.libreoffice.org/24178 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/source/style/impastpl.cxx')
-rw-r--r--xmloff/source/style/impastpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/style/impastpl.cxx b/xmloff/source/style/impastpl.cxx
index 51a59e9b57d0..2d4959ee1d9d 100644
--- a/xmloff/source/style/impastpl.cxx
+++ b/xmloff/source/style/impastpl.cxx
@@ -474,7 +474,7 @@ void SvXMLAutoStylePoolP_Impl::GetRegisteredNames(
XMLAutoStyleFamily &rFamily = *aJ;
// iterate over names
- for (XMLAutoStyleFamily::NameSetType::const_iterator aI = rFamily.maNameSet.begin(); aI != rFamily.maNameSet.end(); ++aI)
+ for (std::set<OUString>::const_iterator aI = rFamily.maNameSet.begin(); aI != rFamily.maNameSet.end(); ++aI)
{
aFamilies.push_back( rFamily.mnFamily );
aNames.push_back( *aI );