python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can I *directly* append to a QVariantList, stored in a QVariantMap?
I have a collection of QVariantMaps which contains QVariantLists in SOME of their entries.
I need to append to the lists. These lists can grow rather large, and I have to do this for many of them, ma...

BuvinJ
Votes: 0
Answers: 2
how to properly declare a qvariantlist and initialize it so i can put my custom object/class into it by appending
i cannot figure out how to use a qvariantlist from all the examples i find
i need to stuff filenames-sizes-checksum for multiple files in a csv file and be able to search through them later here is th...
adam
Votes: 0
Answers: 0
Qt 4.8, canConvert with template
i would like to create a converter based on QVariant.
I have make this methode: find()
template <typename T>
T find(const QVariant variant, T type) {
if (variant.canConvert<type>()){
...
AntDevPlus
Votes: 0
Answers: 0
c++ qt can i fill a QVariant with multiple struct objects
I have the following struct:
struct FileInfo {
QString fileName;
QString fileSize;
QString md5Sum;
};
is it possible to put approximately 30 such objects into a QVariant and then be able to iterate t...
adam
Votes: 0
Answers: 1