INTEGRATION: CWS xmlfix2 (1.3.128); FILE MERGED

2008/05/15 17:24:05 mst 1.3.128.2: RESYNC: (1.3-1.4); FILE MERGED
2008/03/31 15:09:52 mst 1.3.128.1: remove duplicated XAttributeList implementations
- configmgr/source/inc/attributelist.hxx,
  configmgr/source/misc/attributelist.cxx:
  + removed
- configmgr/source/misc/makefile.mk:
  + remove attributelist.cxx
- configmgr/source/xml/elementformatter{.hxx,.cxx}:
  + use comphelper/attributelist.hxx
This commit is contained in:
Rüdiger Timm
2008-06-06 11:04:57 +00:00
parent ac1f308189
commit ca6077be81

View File

@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite * OpenOffice.org - a multi-platform office productivity suite
* *
* $RCSfile: elementformatter.hxx,v $ * $RCSfile: elementformatter.hxx,v $
* $Revision: 1.4 $ * $Revision: 1.5 $
* *
* This file is part of OpenOffice.org. * This file is part of OpenOffice.org.
* *
@@ -36,10 +36,12 @@
#include <rtl/ref.hxx> #include <rtl/ref.hxx>
namespace comphelper {
class AttributeList;
}
namespace configmgr namespace configmgr
{ {
// -----------------------------------------------------------------------------
class AttributeListImpl;
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
namespace xml namespace xml
{ {
@@ -108,7 +110,7 @@ namespace configmgr
private: private:
ElementType::Enum m_aElementType; ElementType::Enum m_aElementType;
rtl::Reference<AttributeListImpl> m_xAttributes; rtl::Reference< ::comphelper::AttributeList> m_xAttributes;
}; };
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------