Cleanup formatting

This commit is contained in:
Gary Talent 2021-07-29 02:47:40 -05:00
parent db22459f46
commit a6ecc22d78
5 changed files with 25 additions and 24 deletions

View File

@ -12,7 +12,8 @@
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
QApplication::setApplicationName(QObject::tr("Slide Controller 9000"));
MainWindow w;
w.show();
return a.exec();
return QApplication::exec();
}