summaryrefslogtreecommitdiff
path: root/xmloff/source/style/impastpl.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-09-17 20:58:26 +0300
committerTor Lillqvist <tml@collabora.com>2013-09-17 20:59:37 +0300
commitb94e46ca4950816e675d0c770d0113d6e3fc2ef8 (patch)
tree31ca563317c5a74e4209fa7d88b492418b45bcf9 /xmloff/source/style/impastpl.hxx
parent5522d9aebe53952805ab24b8ffee30df439daa40 (diff)
If it is a set, don't call it a list, that just confuses the reader
Change-Id: I1d80c2ee463a0253e7e3a84331106006316c1ea6
Diffstat (limited to 'xmloff/source/style/impastpl.hxx')
-rw-r--r--xmloff/source/style/impastpl.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/style/impastpl.hxx b/xmloff/source/style/impastpl.hxx
index e58c013d633d..f8e2e28baea2 100644
--- a/xmloff/source/style/impastpl.hxx
+++ b/xmloff/source/style/impastpl.hxx
@@ -44,15 +44,15 @@ class SvXMLExport;
struct XMLAutoStyleFamily : boost::noncopyable
{
- typedef boost::ptr_set<XMLAutoStylePoolParent> ParentsType;
+ typedef boost::ptr_set<XMLAutoStylePoolParent> ParentSetType;
typedef std::set<OUString> NameSetType;
sal_uInt32 mnFamily;
OUString maStrFamilyName;
UniReference < SvXMLExportPropertyMapper > mxMapper;
- ParentsType maParents;
- NameSetType maNameList;
+ ParentSetType maParentSet;
+ NameSetType maNameSet;
sal_uInt32 mnCount;
sal_uInt32 mnName;
OUString maStrPrefix;
@@ -133,10 +133,10 @@ public:
class SvXMLAutoStylePoolP_Impl
{
// A set that finds and sorts based only on mnFamily
- typedef boost::ptr_set<XMLAutoStyleFamily> FamilyListType;
+ typedef boost::ptr_set<XMLAutoStyleFamily> FamilySetType;
SvXMLExport& rExport;
- FamilyListType maFamilyList;
+ FamilySetType maFamilySet;
public: