From 73cffd710c64d9380af135cf5167ee12ff575c06 Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Wed, 10 Jan 2018 14:53:01 +0100 Subject: [PATCH] doc: Add missing template clauses in qitemeditorfactory.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added several missing template clauses to member functions. Change-Id: I95b46de84c9afa74b74fc36818094b0fff41f755 Reviewed-by: Topi Reiniƶ --- src/widgets/itemviews/qitemeditorfactory.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/widgets/itemviews/qitemeditorfactory.cpp b/src/widgets/itemviews/qitemeditorfactory.cpp index 72a9f1f1c9..0986da9707 100644 --- a/src/widgets/itemviews/qitemeditorfactory.cpp +++ b/src/widgets/itemviews/qitemeditorfactory.cpp @@ -468,7 +468,7 @@ QItemEditorCreatorBase::~QItemEditorCreatorBase() */ /*! - \fn QItemEditorCreator::QItemEditorCreator(const QByteArray &valuePropertyName) + \fn template QItemEditorCreator::QItemEditorCreator(const QByteArray &valuePropertyName) Constructs an editor creator object using \a valuePropertyName as the name of the property to be used for editing. The @@ -480,12 +480,12 @@ QItemEditorCreatorBase::~QItemEditorCreatorBase() */ /*! - \fn QWidget *QItemEditorCreator::createWidget(QWidget *parent) const + \fn template QWidget *QItemEditorCreator::createWidget(QWidget *parent) const \reimp */ /*! - \fn QByteArray QItemEditorCreator::valuePropertyName() const + \fn template QByteArray QItemEditorCreator::valuePropertyName() const \reimp */ @@ -524,18 +524,18 @@ QItemEditorCreatorBase::~QItemEditorCreatorBase() */ /*! - \fn QStandardItemEditorCreator::QStandardItemEditorCreator() + \fn template QStandardItemEditorCreator::QStandardItemEditorCreator() Constructs an editor creator object. */ /*! - \fn QWidget *QStandardItemEditorCreator::createWidget(QWidget *parent) const + \fn template QWidget *QStandardItemEditorCreator::createWidget(QWidget *parent) const \reimp */ /*! - \fn QByteArray QStandardItemEditorCreator::valuePropertyName() const + \fn template QByteArray QStandardItemEditorCreator::valuePropertyName() const \reimp */