summaryrefslogtreecommitdiff
path: root/xmloff/source/style/impastpl.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-08-16 14:33:23 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-08-16 21:31:44 -0400
commitef60854f7d28a325ddb2f938c2d9fe15e48777b4 (patch)
tree4535f20e3add715422d33ec0eb130f337c32d696 /xmloff/source/style/impastpl.hxx
parent7c02faf535a768252fc3559324ac68bc6525763a (diff)
Tuck this typedef inside class scope where it's used.
Change-Id: I2b3a0479f9aeecd601b3fea4a262f614ec437945
Diffstat (limited to 'xmloff/source/style/impastpl.hxx')
-rw-r--r--xmloff/source/style/impastpl.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/xmloff/source/style/impastpl.hxx b/xmloff/source/style/impastpl.hxx
index 1d8969f91bb5..140cc43e21c5 100644
--- a/xmloff/source/style/impastpl.hxx
+++ b/xmloff/source/style/impastpl.hxx
@@ -79,9 +79,6 @@ public:
void ClearEntries();
};
-// A set that finds and sorts based only on mnFamily
-typedef boost::ptr_set<XMLFamilyData_Impl> XMLFamilyDataList_Impl;
-
// Properties of a pool
class SvXMLAutoStylePoolPropertiesP_Impl
@@ -154,9 +151,11 @@ public:
class SvXMLAutoStylePoolP_Impl
{
- SvXMLExport& rExport;
+ // A set that finds and sorts based only on mnFamily
+ typedef boost::ptr_set<XMLFamilyData_Impl> FamilyListType;
- XMLFamilyDataList_Impl maFamilyList;
+ SvXMLExport& rExport;
+ FamilyListType maFamilyList;
public: