summaryrefslogtreecommitdiffstats
path: root/src/xml/sax/qxml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xml/sax/qxml.cpp')
-rw-r--r--src/xml/sax/qxml.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/xml/sax/qxml.cpp b/src/xml/sax/qxml.cpp
index 47e137976b..0e20041a62 100644
--- a/src/xml/sax/qxml.cpp
+++ b/src/xml/sax/qxml.cpp
@@ -985,12 +985,22 @@ void QXmlNamespaceSupport::reset()
Constructs an empty attribute list.
*/
+QXmlAttributes::QXmlAttributes()
+{
+ // ### In Qt 5.0, this function was inlined and d was not initialized
+ // The member cannot be used until Qt 6.0
+ Q_UNUSED(d);
+}
/*!
\fn QXmlAttributes::~QXmlAttributes()
Destroys the attributes object.
*/
+QXmlAttributes::~QXmlAttributes()
+{
+}
+
/*!
Looks up the index of an attribute by the qualified name \a qName.
@@ -2400,11 +2410,21 @@ events are reported.
Constructs a handler for use with subclasses of QXmlReader.
*/
+QXmlDefaultHandler::QXmlDefaultHandler()
+{
+ // ### In Qt 5.0, this function was inlined and d was not initialized
+ // The member cannot be used until Qt 6.0
+ Q_UNUSED(d);
+}
+
/*!
\fn QXmlDefaultHandler::~QXmlDefaultHandler()
Destroys the handler.
*/
+QXmlDefaultHandler::~QXmlDefaultHandler()
+{
+}
/*!
\reimp