2023-01-07 12:44:45 +01:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
2023-01-12 09:23:45 +01:00
|
|
|
#include <QSettings>
|
2023-01-15 13:26:14 +01:00
|
|
|
#include <KAboutData>
|
|
|
|
#include <KDBusService>
|
|
|
|
#include <QTranslator>
|
|
|
|
#include <QCommandLineParser>
|
2023-01-07 12:44:45 +01:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
|
|
|
return a.exec();
|
|
|
|
}
|