mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
Attempt to load a file if passed on the command line.
This commit is contained in:
parent
5e55d3d7c7
commit
42f2bf05bf
@ -14,11 +14,8 @@ int main(int argc, char *argv[])
|
||||
format.setStencilBufferSize(0);
|
||||
QSurfaceFormat::setDefaultFormat(format);
|
||||
|
||||
// TODO: something with QCommandLineParser to accept a file to launch.
|
||||
|
||||
QApplication a(argc, argv);
|
||||
|
||||
MainWindow *w = new MainWindow();
|
||||
MainWindow *const w = (argc > 1) ? new MainWindow(argv[1]) : new MainWindow();
|
||||
w->setAttribute(Qt::WA_DeleteOnClose);
|
||||
w->show();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user