# # # patch "src/main.cpp" # from [ebaf75f5f6031ae804e552eb67502bfff78dd0f5] # to [d4a6677cce578b067eb80644dda4fc16b1043e69] # ============================================================ --- src/main.cpp ebaf75f5f6031ae804e552eb67502bfff78dd0f5 +++ src/main.cpp d4a6677cce578b067eb80644dda4fc16b1043e69 @@ -22,10 +22,11 @@ #include #include "view/Guitone.h" -int main( int argc, char ** argv ) { +int main(int argc, char** argv) +{ QApplication app(argc,argv); Guitone *mainWnd = new Guitone(); - mainWnd->setCaption( "guitone" ); + mainWnd->setCaption("guitone"); mainWnd->show(); app.connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit())); return app.exec();