Close holes and wasted space in structures.
This commit is contained in:
parent
e63e28d7d6
commit
75dc349a4a
2 changed files with 6 additions and 6 deletions
|
@ -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() {}
|
||||
|
|
|
@ -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_;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue