diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-05 14:55:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-06 08:41:58 +0200 |
commit | d451de7f08ba984f103364e167c8c6d097e493a8 (patch) | |
tree | f52d6da5e394b66c780cd8b94c4ce9558d220f9d /xmloff/inc/forms | |
parent | 4e2a8b78be17001cf7a3f648261559754a24e555 (diff) |
loplugin:mergeclasses
Change-Id: I592eef7503bd0b492f73ea5216f436302ad79ca8
Diffstat (limited to 'xmloff/inc/forms')
-rw-r--r-- | xmloff/inc/forms/property_handler.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/xmloff/inc/forms/property_handler.hxx b/xmloff/inc/forms/property_handler.hxx index 48658f129dfe..daa1f0f9ec12 100644 --- a/xmloff/inc/forms/property_handler.hxx +++ b/xmloff/inc/forms/property_handler.hxx @@ -35,8 +35,7 @@ namespace xmloff typedef ::std::map< PropertyId, ::com::sun::star::uno::Any > PropertyValues; - //= IPropertyHandler - class IPropertyHandler : public ::salhelper::SimpleReferenceObject + class PropertyHandlerBase : public ::salhelper::SimpleReferenceObject { public: /** retrieves the XML attribute value for the given property values @@ -54,11 +53,11 @@ namespace xmloff virtual bool getPropertyValues( const OUString& i_attributeValue, PropertyValues& o_propertyValues ) const = 0; - virtual ~IPropertyHandler() { } + virtual ~PropertyHandlerBase() {} }; //= PPropertyHandler - typedef ::rtl::Reference< IPropertyHandler > PPropertyHandler; + typedef rtl::Reference< PropertyHandlerBase > PPropertyHandler; //= PropertyHandlerFactory typedef PPropertyHandler (*PropertyHandlerFactory)( const PropertyId i_propertyId ); |