int main(int argc, char *argv[]) { Q_INIT_RESOURCE(gui_media); QApplication a(argc, argv); #ifdef TESTS PruebaPantalla *pp = new PruebaPantalla(); pp->show(); #else NewMainWindow mw; mw.show(); #endif return a.exec(); }
void PruebaPantalla::on_NewMainWindowButton_clicked() { NewMainWindow *mainWindow = new NewMainWindow; mainWindow->show(); }