Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.6.2
-
None
-
Mac
Description
Creating this application on a 10.6 machine, and running it on a ppc machine results in the splash screen not showing.
#include <QtGui/QtGui> int main(int argc, char *argv[]) { QApplication app(argc, argv); QPixmap pixmap("splash.png"); QSplashScreen splash(pixmap); splash.show(); // app.processEvents(); sleep(5); // ... QMainWindow window; window.show(); splash.finish(&window); return app.exec(); }