Close holes and wasted space in structures.
This commit is contained in:
@@ -52,8 +52,8 @@ namespace css = com::sun::star;
|
|||||||
PropertyNode::PropertyNode(
|
PropertyNode::PropertyNode(
|
||||||
int layer, Type staticType, bool nillable, css::uno::Any const & value,
|
int layer, Type staticType, bool nillable, css::uno::Any const & value,
|
||||||
bool extension):
|
bool extension):
|
||||||
Node(layer), staticType_(staticType), nillable_(nillable), value_(value),
|
Node(layer), staticType_(staticType), nillable_(nillable),
|
||||||
extension_(extension)
|
extension_(extension), value_(value)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
rtl::Reference< Node > PropertyNode::clone(bool) const {
|
rtl::Reference< Node > PropertyNode::clone(bool) const {
|
||||||
@@ -98,8 +98,8 @@ bool PropertyNode::isExtension() const {
|
|||||||
|
|
||||||
PropertyNode::PropertyNode(PropertyNode const & other):
|
PropertyNode::PropertyNode(PropertyNode const & other):
|
||||||
Node(other), staticType_(other.staticType_), nillable_(other.nillable_),
|
Node(other), staticType_(other.staticType_), nillable_(other.nillable_),
|
||||||
value_(other.value_), externalDescriptor_(other.externalDescriptor_),
|
extension_(other.extension_), externalDescriptor_(other.externalDescriptor_),
|
||||||
extension_(other.extension_)
|
value_(other.value_)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
PropertyNode::~PropertyNode() {}
|
PropertyNode::~PropertyNode() {}
|
||||||
|
@@ -73,9 +73,9 @@ private:
|
|||||||
// as specified in the component-schema (TYPE_ANY, ...,
|
// as specified in the component-schema (TYPE_ANY, ...,
|
||||||
// TYPE_HEXBINARY_LIST; not TYPE_ERROR or TYPE_NIL)
|
// TYPE_HEXBINARY_LIST; not TYPE_ERROR or TYPE_NIL)
|
||||||
bool nillable_;
|
bool nillable_;
|
||||||
com::sun::star::uno::Any value_;
|
|
||||||
rtl::OUString externalDescriptor_;
|
|
||||||
bool extension_;
|
bool extension_;
|
||||||
|
rtl::OUString externalDescriptor_;
|
||||||
|
com::sun::star::uno::Any value_;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user