Source

Target

Commits (2)
Showing with 1 addition and 3 deletions
......@@ -75,13 +75,11 @@ protected:
Q_UNUSED(type);
Q_UNUSED(identifier);
m_messageType = type;
m_description = description;
m_sourceLocation = sourceLocation;
}
private:
QtMsgType m_messageType;
QString m_description;
QSourceLocation m_sourceLocation;
};
......
......@@ -109,7 +109,7 @@ XsdAlternative::Ptr XsdElement::TypeTable::defaultTypeDefinition() const
XsdElement::XsdElement()
: m_isAbstract(false)
: m_isAbstract(false), m_isNillable(false)
{
}
......