From 33cc78b8f933a697c5bc6924a55f3a9cfa8b1e56 Mon Sep 17 00:00:00 2001 From: Thiago Macieira <thiago.macieira@intel.com> Date: Fri, 20 Jun 2014 16:25:02 -0700 Subject: [PATCH] Add missing copy assignment operator to QXmlSchema Found by MSVC 2013 when. Change-Id: I09c23afca4c9045523ae0722751fb27737b1b5f8 Reviewed-by: Olivier Goffart <ogoffart@woboq.com> --- src/xmlpatterns/api/qxmlschema.cpp | 11 +++++++++++ src/xmlpatterns/api/qxmlschema.h | 1 + 2 files changed, 12 insertions(+) diff --git a/src/xmlpatterns/api/qxmlschema.cpp b/src/xmlpatterns/api/qxmlschema.cpp index a05708ff..2ce6a575 100644 --- a/src/xmlpatterns/api/qxmlschema.cpp +++ b/src/xmlpatterns/api/qxmlschema.cpp @@ -93,6 +93,17 @@ QXmlSchema::QXmlSchema(const QXmlSchema &other) { } +/*! + \since 5.4 + Copies the resources of \a other into this instance, sharing + them to the extent possible. + */ +QXmlSchema &QXmlSchema::operator =(const QXmlSchema &other) +{ + d = other.d; + return *this; +} + /*! Destroys this QXmlSchema. */ diff --git a/src/xmlpatterns/api/qxmlschema.h b/src/xmlpatterns/api/qxmlschema.h index dedabfb9..6f081ed6 100644 --- a/src/xmlpatterns/api/qxmlschema.h +++ b/src/xmlpatterns/api/qxmlschema.h @@ -64,6 +64,7 @@ class Q_XMLPATTERNS_EXPORT QXmlSchema public: QXmlSchema(); QXmlSchema(const QXmlSchema &other); + QXmlSchema &operator=(const QXmlSchema &other); ~QXmlSchema(); bool load(const QUrl &source); -- GitLab