Code: Alles auswählen
QApplication app(argc, argv);
QPixmap Titelbild(":/Bilder/Startbild.png");
QSplashScreen *Startbild=new QSplashScreen(Titelbild);
Startbild->show();
DlgHaupt *Hauptfenster=new DlgHaupt();
Hauptfenster->show();
Startbild->finish(Hauptfenster);
delete Startbild;
return app.exec();