summaryrefslogtreecommitdiff
path: root/configmgr/source/xml/elementinfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/xml/elementinfo.hxx')
-rw-r--r--configmgr/source/xml/elementinfo.hxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/configmgr/source/xml/elementinfo.hxx b/configmgr/source/xml/elementinfo.hxx
index 1fd8c93f34..8bb00b49b8 100644
--- a/configmgr/source/xml/elementinfo.hxx
+++ b/configmgr/source/xml/elementinfo.hxx
@@ -42,8 +42,6 @@ namespace configmgr
namespace xml
{
// -----------------------------------------------------------------------------
- typedef rtl::OUString ElementName;
-// -----------------------------------------------------------------------------
namespace ElementType
{
enum Enum
@@ -90,8 +88,6 @@ namespace configmgr
// -----------------------------------------------------------------------------
struct ElementInfo
{
- typedef sal_Int16 FlagsType;
-
explicit
ElementInfo(ElementType::Enum _type = ElementType::unknown)
: name()
@@ -101,7 +97,7 @@ namespace configmgr
{}
explicit
- ElementInfo(ElementName const & _name, ElementType::Enum _type = ElementType::unknown)
+ ElementInfo(rtl::OUString const & _name, ElementType::Enum _type = ElementType::unknown)
: name(_name)
, type(_type)
, op(Operation::none)
@@ -109,10 +105,10 @@ namespace configmgr
{}
- ElementName name;
+ rtl::OUString name;
ElementType::Enum type;
Operation::Enum op;
- FlagsType flags;
+ sal_Int16 flags;
};
// -----------------------------------------------------------------------------
} // namespace xml