aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/cppcurrentdocumentfilter.cpp
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/plugins/cpptools/cppcurrentdocumentfilter.cpp
parentf7d224bf58894ea4f4b5df0abd28abec46964ded (diff)
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/plugins/cpptools/cppcurrentdocumentfilter.cpp')
-rw-r--r--src/plugins/cpptools/cppcurrentdocumentfilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cppcurrentdocumentfilter.cpp b/src/plugins/cpptools/cppcurrentdocumentfilter.cpp
index be1163d168..fdd4920504 100644
--- a/src/plugins/cpptools/cppcurrentdocumentfilter.cpp
+++ b/src/plugins/cpptools/cppcurrentdocumentfilter.cpp
@@ -83,7 +83,7 @@ QList<Core::LocatorFilterEntry> CppCurrentDocumentFilter::matchesFor(
QRegularExpressionMatch match = regexp.match(matchString);
if (match.hasMatch()) {
const bool betterMatch = match.capturedStart() == 0;
- QVariant id = qVariantFromValue(info);
+ QVariant id = QVariant::fromValue(info);
QString name = matchString;
QString extraInfo = info->symbolScope();
if (info->type() == IndexItem::Function) {