summaryrefslogtreecommitdiff
path: root/configmgr/source/propertynode.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/propertynode.cxx')
-rwxr-xr-x[-rw-r--r--]configmgr/source/propertynode.cxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/configmgr/source/propertynode.cxx b/configmgr/source/propertynode.cxx
index f3e459998e7e..8e2eec660d2b 100644..100755
--- a/configmgr/source/propertynode.cxx
+++ b/configmgr/source/propertynode.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -51,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 {
@@ -97,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() {}
@@ -108,3 +109,5 @@ Node::Kind PropertyNode::kind() const {
}
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */