summaryrefslogtreecommitdiff
path: root/src/libs/extensionsystem
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-27 13:32:20 +0200
committerhjk <hjk@qt.io>2019-05-27 12:33:29 +0000
commit19e1cf1520c313f0dbecac649b8f1270acfbe2d3 (patch)
tree21784605725cba8f809c5fbac5e431cc91d9812f /src/libs/extensionsystem
parentf7d224bf58894ea4f4b5df0abd28abec46964ded (diff)
downloadqt-creator-19e1cf1520c313f0dbecac649b8f1270acfbe2d3.tar.gz
Replace uses of qVariantFromValue with QVariant::fromValue
Deprecated in Qt 5.14, alternative has been around since Qt 4 at least. Change-Id: I4e3a53c289088368609e0d0ce2405a832d311308 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/libs/extensionsystem')
-rw-r--r--src/libs/extensionsystem/pluginerroroverview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/extensionsystem/pluginerroroverview.cpp b/src/libs/extensionsystem/pluginerroroverview.cpp
index 828bd013f4..74e7ac73b0 100644
--- a/src/libs/extensionsystem/pluginerroroverview.cpp
+++ b/src/libs/extensionsystem/pluginerroroverview.cpp
@@ -45,7 +45,7 @@ PluginErrorOverview::PluginErrorOverview(QWidget *parent) :
// only show errors on startup if plugin is enabled.
if (spec->hasError() && spec->isEffectivelyEnabled()) {
QListWidgetItem *item = new QListWidgetItem(spec->name());
- item->setData(Qt::UserRole, qVariantFromValue(spec));
+ item->setData(Qt::UserRole, QVariant::fromValue(spec));
m_ui->pluginList->addItem(item);
}
}