Code:
void ZePhotoList::onBrowsePhoto() { tr("Open Image"), tr("Image Files (*.png *.jpg *.bmp)")); }
On wn32, when running that line I get a loop of :
QFile::seek: IODevice is not open
Any idea ?
Printable View
Code:
void ZePhotoList::onBrowsePhoto() { tr("Open Image"), tr("Image Files (*.png *.jpg *.bmp)")); }
On wn32, when running that line I get a loop of :
QFile::seek: IODevice is not open
Any idea ?
Jeez that was a conflict with QMovie.
I had to add setCacheMode(QMovie::CacheAll); to avoid this.
Code:
//============================================================================= //============================================================================= { setMovie(mMovie); // I had to add this to avoid IO conflcts mMovie->start(); }
Anybody knows why ?