Skip to content
Snippets Groups Projects
Commit 0acaafd8 authored by Paul Tvete's avatar Paul Tvete
Browse files

Remove calls to old QApplication functions

We do the right thing automatically these days
parent 997b5756
No related branches found
No related tags found
No related merge requests found
......@@ -11,12 +11,10 @@
int main( int argc, char **argv )
{
QApplication::setColorMode( QApplication::CustomColors );
QApplication a( argc, argv );
GameBoard gb;
gb.setGeometry( 100, 100, 500, 355 );
a.setMainWidget( &gb );
gb.show();
return a.exec();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment