diff options
author | Michael Stahl <mst@openoffice.org> | 2011-01-19 20:27:19 +0100 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2011-01-19 20:27:19 +0100 |
commit | a10e0ee65f2721aadae0d1e6cc26f749e3ac6bf6 (patch) | |
tree | a8a8081c6d2d1245e2a6a6d09dd9471a583683c0 /unoxml/source/dom/entity.hxx | |
parent | cb5905f108fb7bb99587791fca24c9d481ae93d9 (diff) |
xmlfix3: unoxml: refactor CNode initialization
Diffstat (limited to 'unoxml/source/dom/entity.hxx')
-rw-r--r-- | unoxml/source/dom/entity.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/unoxml/source/dom/entity.hxx b/unoxml/source/dom/entity.hxx index 0343a13dda16..2c879e18ea9b 100644 --- a/unoxml/source/dom/entity.hxx +++ b/unoxml/source/dom/entity.hxx @@ -25,8 +25,8 @@ * ************************************************************************/ -#ifndef _ENTITY_HXX -#define _ENTITY_HXX +#ifndef DOM_ENTITY_HXX +#define DOM_ENTITY_HXX #include <sal/types.h> #include <com/sun/star/uno/Reference.h> @@ -42,7 +42,10 @@ using namespace com::sun::star::xml::dom; namespace DOM { - class CEntity : public cppu::ImplInheritanceHelper1< CNode, XEntity > + typedef ::cppu::ImplInheritanceHelper1< CNode, XEntity > CEntity_Base; + + class CEntity + : public CEntity_Base { friend class CNode; private: |