summaryrefslogtreecommitdiff
path: root/xmloff/source/style/impastpl.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-08-17 22:42:21 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-08-17 23:10:58 -0400
commit30dab43c058c27ca603b5ac318a0283883475fc9 (patch)
tree2b716cb1a9570e3414329e9fabd43112974e5ba5 /xmloff/source/style/impastpl.hxx
parent965f98162deb89ac789bfe0ba81a8975d9140f13 (diff)
Rename SvXMLAutoStylePoolParentP_Impl to XMLAutoStylePoolParent.
Change-Id: Ia5fe8e386fd363f0b5bb81b3d0e8fd1e15efe430
Diffstat (limited to 'xmloff/source/style/impastpl.hxx')
-rw-r--r--xmloff/source/style/impastpl.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/source/style/impastpl.hxx b/xmloff/source/style/impastpl.hxx
index 6b4aa6d6d99a..077456e600ad 100644
--- a/xmloff/source/style/impastpl.hxx
+++ b/xmloff/source/style/impastpl.hxx
@@ -36,7 +36,7 @@
#include <boost/ptr_container/ptr_vector.hpp>
class SvXMLAutoStylePoolP;
-class SvXMLAutoStylePoolParentP_Impl;
+class XMLAutoStylePoolParent;
typedef std::set<OUString> SvXMLAutoStylePoolNamesP_Impl;
class SvXMLExportPropertyMapper;
class SvXMLExport;
@@ -47,7 +47,7 @@ class SvXMLExport;
struct XMLAutoStyleFamily : boost::noncopyable
{
- typedef boost::ptr_set<SvXMLAutoStylePoolParentP_Impl> ParentsType;
+ typedef boost::ptr_set<XMLAutoStylePoolParent> ParentsType;
sal_uInt32 mnFamily;
OUString maStrFamilyName;
@@ -96,7 +96,7 @@ public:
};
// Parents of AutoStylePool's
-class SvXMLAutoStylePoolParentP_Impl
+class XMLAutoStylePoolParent
{
public:
typedef boost::ptr_vector<SvXMLAutoStylePoolPropertiesP_Impl> PropertiesListType;
@@ -107,12 +107,12 @@ private:
public:
- SvXMLAutoStylePoolParentP_Impl( const OUString & rParent ) :
+ XMLAutoStylePoolParent( const OUString & rParent ) :
msParent( rParent )
{
}
- ~SvXMLAutoStylePoolParentP_Impl();
+ ~XMLAutoStylePoolParent();
sal_Bool Add( XMLAutoStyleFamily& rFamilyData, const ::std::vector< XMLPropertyState >& rProperties, OUString& rName, bool bDontSeek = false );
@@ -127,12 +127,12 @@ public:
return maPropertiesList;
}
- bool operator< (const SvXMLAutoStylePoolParentP_Impl& rOther) const;
+ bool operator< (const XMLAutoStylePoolParent& rOther) const;
};
struct SvXMLAutoStylePoolParentPCmp_Impl
{
- bool operator()( SvXMLAutoStylePoolParentP_Impl* const& lhs, SvXMLAutoStylePoolParentP_Impl* const& rhs) const
+ bool operator()( XMLAutoStylePoolParent* const& lhs, XMLAutoStylePoolParent* const& rhs) const
{
return lhs->GetParent().compareTo( rhs->GetParent() ) < 0;
}