File indexing completed on 2024-05-12 17:08:23

0001 // SPDX-FileCopyrightText: 2018 Daniel Vrátil <dvratil@kde.org>
0002 //
0003 // SPDX-License-Identifier: LGPL-2.1-or-later
0004 
0005 #include <QApplication>
0006 
0007 #include "mainwindow.h"
0008 
0009 int main(int argc, char **argv)
0010 {
0011     QApplication app(argc, argv);
0012 
0013     MainWindow window;
0014     window.showNormal();
0015     return QApplication::exec();
0016 }