blob: 39a96321688e8bd1b93703c149f6afa835746707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <QApplication>
#include "dialog.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Dialog w;
if (argc==2) {
w.LoadDesktopFile(QString(argv[1]).simplified());
} else if (argc==3) {
w.Initialise(QString(argv[1]).simplified());
w.LoadDesktopFile(QString(argv[2]).simplified());
} else {
w.MissingInputs();
}
a.setApplicationName("Desktop Editor");
w.show();
return a.exec();
}
|