vote up 2 vote down star

I have a QVariant object within a QTreeWidgetItem, how can I cast it to my own object?

flag

1 Answer

vote up 5 vote down check

you need to declare somewhere in an .h file the following:

Q_DECLARE_METATYPE(MyStruct)

and then you can just use:

MyStruct s;
QVariant var;
var.setValue(s); // copy s into the variant

// retrieve the value
MyStruct s2 = var.value<MyStruct>();

see the docs here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.