Maybe you can show us code similar to your original one, but simpler and working on some other data?
Maybe you can show us code similar to your original one, but simpler and working on some other data?
I don't think I have time to write one that will do this and not be the same thing, cause I am on such a deadline right now. I basically barely have time to finish this![]()
Hey, Thank you guys for trying to help. I did find out what was slowing my view down.
my data in my model were pointers in a list that was a pointer. So...
QList< item *> * itemlist;
I changed it to
QList<item> itemlist;
and it works fast
Hmm... really? Did it matter that much? I admit I'm surprised...
Bookmarks