I am writing a quick and dirty gui using qt4 for a project I'm working on.
I need to iterate through a folder of pngs and display them, either in a sort of impromptu animation, or step by step.
So my question is: How do I get a QLabel to refresh its contents?
I have a QLabel called label, and I set its Pixmap using
Code: Select all
label->setPixmap(QPixmap("pic1.png"));I can't find any information on this on the net for some reason.
Any thoughts?

