[Libreoffice-commits] .: configmgr/source

Michael Meeks mmeeks at kemper.freedesktop.org
Fri Oct 15 07:13:17 PDT 2010


 configmgr/source/propertynode.cxx |    8 ++++----
 configmgr/source/propertynode.hxx |    4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit cda621d6b1fa283eb5916cbdd9d84bf16d1c3a6f
Author: Michael Meeks <michael.meeks at novell.com>
Date:   Fri Oct 15 15:12:13 2010 +0100

    Close holes and wasted space in structures.

diff --git a/configmgr/source/propertynode.cxx b/configmgr/source/propertynode.cxx
index 8946f92..8e2eec6 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 506526f..d85b306 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_;
 };
 
 }


More information about the Libreoffice-commits mailing list