summaryrefslogtreecommitdiff
path: root/xmloff/source/style/impastpl.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-08-17 22:35:35 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-08-17 23:10:58 -0400
commit965f98162deb89ac789bfe0ba81a8975d9140f13 (patch)
tree4008c78640e77af456787fa8078abf2b1ff053a9 /xmloff/source/style/impastpl.hxx
parentf4be2adde9fdc1bfe585fa99a335efdeb4bdacf6 (diff)
Rename XMLFamilyData_Impl to XMLAutoStyleFamily.
Change-Id: I9798408dc92a983fecc98c42516482afcb12ae25
Diffstat (limited to 'xmloff/source/style/impastpl.hxx')
-rw-r--r--xmloff/source/style/impastpl.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/xmloff/source/style/impastpl.hxx b/xmloff/source/style/impastpl.hxx
index d3b6cf66438c..6b4aa6d6d99a 100644
--- a/xmloff/source/style/impastpl.hxx
+++ b/xmloff/source/style/impastpl.hxx
@@ -45,7 +45,7 @@ class SvXMLExport;
// Implementationclass for stylefamily-information
-struct XMLFamilyData_Impl : boost::noncopyable
+struct XMLAutoStyleFamily : boost::noncopyable
{
typedef boost::ptr_set<SvXMLAutoStylePoolParentP_Impl> ParentsType;
@@ -60,14 +60,14 @@ struct XMLFamilyData_Impl : boost::noncopyable
OUString maStrPrefix;
bool mbAsFamily;
- XMLFamilyData_Impl( sal_Int32 nFamily, const OUString& rStrName,
+ XMLAutoStyleFamily( sal_Int32 nFamily, const OUString& rStrName,
const UniReference<SvXMLExportPropertyMapper>& rMapper,
const OUString& rStrPrefix, bool bAsFamily = true );
- XMLFamilyData_Impl( sal_Int32 nFamily );
- ~XMLFamilyData_Impl();
+ XMLAutoStyleFamily( sal_Int32 nFamily );
+ ~XMLAutoStyleFamily();
- friend bool operator<(const XMLFamilyData_Impl& r1, const XMLFamilyData_Impl& r2);
+ friend bool operator<(const XMLAutoStyleFamily& r1, const XMLAutoStyleFamily& r2);
void ClearEntries();
};
@@ -82,7 +82,7 @@ class SvXMLAutoStylePoolPropertiesP_Impl
public:
- SvXMLAutoStylePoolPropertiesP_Impl( XMLFamilyData_Impl& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties );
+ SvXMLAutoStylePoolPropertiesP_Impl( XMLAutoStyleFamily& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties );
~SvXMLAutoStylePoolPropertiesP_Impl()
{
@@ -114,11 +114,11 @@ public:
~SvXMLAutoStylePoolParentP_Impl();
- sal_Bool Add( XMLFamilyData_Impl& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties, OUString& rName, bool bDontSeek = false );
+ sal_Bool Add( XMLAutoStyleFamily& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties, OUString& rName, bool bDontSeek = false );
- sal_Bool AddNamed( XMLFamilyData_Impl& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties, const OUString& rName );
+ sal_Bool AddNamed( XMLAutoStyleFamily& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties, const OUString& rName );
- OUString Find( const XMLFamilyData_Impl& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties ) const;
+ OUString Find( const XMLAutoStyleFamily& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties ) const;
const OUString& GetParent() const { return msParent; }
@@ -143,7 +143,7 @@ struct SvXMLAutoStylePoolParentPCmp_Impl
class SvXMLAutoStylePoolP_Impl
{
// A set that finds and sorts based only on mnFamily
- typedef boost::ptr_set<XMLFamilyData_Impl> FamilyListType;
+ typedef boost::ptr_set<XMLAutoStyleFamily> FamilyListType;
SvXMLExport& rExport;
FamilyListType maFamilyList;