Die Suche ergab 1 Treffer

von Fishi
1. April 2008 15:43
Forum: Qt Programmierung
Thema: [Gelöst] F12 Taste sorgt für Unbehandelte Ausnahme
Antworten: 6
Zugriffe: 3707

Hallo

Hab das selbe Problem.

QT4.3.4
Win Vista

Sobald ich ein QMainWindow erstelle und dort F12 betätige stürtzt das progamm ab.

Code: Alles auswählen

int main(int argc, char* argv[])
{
	QApplication app(argc, argv);
	QMainWindow* window = new QMainWindow;
	window->show();
	return app.exec();
}