From d451de7f08ba984f103364e167c8c6d097e493a8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 5 Oct 2015 14:55:06 +0200 Subject: loplugin:mergeclasses Change-Id: I592eef7503bd0b492f73ea5216f436302ad79ca8 --- xmloff/inc/forms/property_handler.hxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'xmloff/inc/forms') 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 ); -- cgit