diff options
| author | lonkaars <loek@pipeframe.xyz> | 2022-12-01 14:53:37 +0100 | 
|---|---|---|
| committer | lonkaars <loek@pipeframe.xyz> | 2022-12-01 14:53:37 +0100 | 
| commit | 2f5d58c7eae101c3803a63ca11315aec5cd6e1f0 (patch) | |
| tree | d7167064cbada7474e8c762ce5794038e5e9ba99 /confui/main.cpp | |
| parent | 390726a83913552e63d4499d216ea6f370d6adad (diff) | |
folder restructure of confui
Diffstat (limited to 'confui/main.cpp')
| -rw-r--r-- | confui/main.cpp | 11 | 
1 files changed, 5 insertions, 6 deletions
| diff --git a/confui/main.cpp b/confui/main.cpp index fd3e533..ab8ae38 100644 --- a/confui/main.cpp +++ b/confui/main.cpp @@ -2,10 +2,9 @@  #include <QApplication> -int main(int argc, char *argv[]) -{ -    QApplication a(argc, argv); -    MainWindow w; -    w.show(); -    return a.exec(); +int main(int argc, char *argv[]) { +	QApplication a(argc, argv); +	MainWindow w; +	w.show(); +	return a.exec();  } |