main.cpp uncrustify

This commit is contained in:
2019-12-19 19:38:18 +01:00
parent 0bcbe13f13
commit 5073312f7a

View File

@@ -4,13 +4,13 @@
#include "IntelliHelper/IntelliHelper.h"
#include <vector>
int main(int argc, char *argv[]){
// The main application
QApplication app(argc, argv);
int main(int argc, char*argv[]){
// The main application
QApplication app(argc, argv);
// Create and open the main window
IntelliPhotoGui window;
window.show();
// Create and open the main window
IntelliPhotoGui window;
window.show();
return app.exec();
return app.exec();
}