|
From: <cn...@us...> - 2021-04-30 04:11:28
|
Revision: 1169
http://sourceforge.net/p/seq/svn/1169
Author: cn187
Date: 2021-04-30 04:11:26 +0000 (Fri, 30 Apr 2021)
Log Message:
-----------
[Qt5] Use QVariant::value instead of qVariantValue
Modified Paths:
--------------
showeq/branches/cn187_devel/src/xmlpreferences.cpp
Modified: showeq/branches/cn187_devel/src/xmlpreferences.cpp
===================================================================
--- showeq/branches/cn187_devel/src/xmlpreferences.cpp 2021-04-30 04:11:18 UTC (rev 1168)
+++ showeq/branches/cn187_devel/src/xmlpreferences.cpp 2021-04-30 04:11:26 UTC (rev 1169)
@@ -656,7 +656,7 @@
QVariant* preference = getPref(inName, inSection, pers); \
\
if (preference) \
- return qVariantValue< retType >(*preference); \
+ return preference->value< retType >(); \
\
return def; \
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|