summaryrefslogtreecommitdiff
path: root/configmgr/source
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@novell.com>2010-10-15 15:12:13 +0100
committerMichael Meeks <michael.meeks@novell.com>2010-10-15 15:12:13 +0100
commitcda621d6b1fa283eb5916cbdd9d84bf16d1c3a6f (patch)
tree71b2fc8bf435b60681d7ce766ebd9c3b6a2c653a /configmgr/source
parent8bc9166f28712e799766cb25989ba1a3f6da2312 (diff)
Close holes and wasted space in structures.
Diffstat (limited to 'configmgr/source')
-rw-r--r--configmgr/source/propertynode.cxx8
-rw-r--r--configmgr/source/propertynode.hxx4
2 files changed, 6 insertions, 6 deletions
diff --git a/configmgr/source/propertynode.cxx b/configmgr/source/propertynode.cxx
index 8946f9290b..8e2eec660d 100644
--- a/configmgr/source/propertynode.cxx
+++ b/configmgr/source/propertynode.cxx
@@ -52,8 +52,8 @@ namespace css = com::sun::star;
PropertyNode::PropertyNode(
int layer, Type staticType, bool nillable, css::uno::Any const & value,
bool extension):
- Node(layer), staticType_(staticType), nillable_(nillable), value_(value),
- extension_(extension)
+ Node(layer), staticType_(staticType), nillable_(nillable),
+ extension_(extension), value_(value)
{}
rtl::Reference< Node > PropertyNode::clone(bool) const {
@@ -98,8 +98,8 @@ bool PropertyNode::isExtension() const {
PropertyNode::PropertyNode(PropertyNode const & other):
Node(other), staticType_(other.staticType_), nillable_(other.nillable_),
- value_(other.value_), externalDescriptor_(other.externalDescriptor_),
- extension_(other.extension_)
+ extension_(other.extension_), externalDescriptor_(other.externalDescriptor_),
+ value_(other.value_)
{}
PropertyNode::~PropertyNode() {}
diff --git a/configmgr/source/propertynode.hxx b/configmgr/source/propertynode.hxx
index 506526ffcc..d85b306655 100644
--- a/configmgr/source/propertynode.hxx
+++ b/configmgr/source/propertynode.hxx
@@ -73,9 +73,9 @@ private:
// as specified in the component-schema (TYPE_ANY, ...,
// TYPE_HEXBINARY_LIST; not TYPE_ERROR or TYPE_NIL)
bool nillable_;
- com::sun::star::uno::Any value_;
- rtl::OUString externalDescriptor_;
bool extension_;
+ rtl::OUString externalDescriptor_;
+ com::sun::star::uno::Any value_;
};
}