aboutsummaryrefslogtreecommitdiff
path: root/desktop-editor/main.cpp
blob: 58cc362063283a95cc9b63971cf74ea3e7859450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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();
    }
    w.show();

    return a.exec();
}
bgstack15