Obsolete Members for QVariant
The following members of class QVariant are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.
Related Non-Members
(obsolete) QVariant | qVariantFromValue(const T &) |
Related Non-Members
QVariant QVariant::qVariantFromValue(const T &)
This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Returns a variant containing a copy of the given value with template type T
.
This function is equivalent to QVariant::fromValue(value).
Note: This function was provided as a workaround for MSVC 6 which did not support member template functions. It is advised to use the other form in new code.
For example, a QObject pointer can be stored in a variant with the following code:
QObject *object = getObjectFromSomewhere(); QVariant data = QVariant::fromValue(object);
See also QVariant::fromValue().