File indexing completed on 2024-05-12 03:59:50

0001 /*
0002     This file is part of the KDE project
0003 
0004     SPDX-FileCopyrightText: 2010-2012 Martin Sandsmark <martin.sandsmark@kde.org>
0005     SPDX-FileCopyrightText: 2018 Olivier Churlaud <olivier@churlaud.com>
0006 
0007     SPDX-License-Identifier: LGPL-3.0-or-later
0008 */
0009 
0010 #include "dialog.h"
0011 
0012 #include <QApplication>
0013 
0014 int main(int argc, char *argv[])
0015 {
0016     QApplication app(argc, argv);
0017 
0018     Dialog dialog;
0019     dialog.show();
0020     return app.exec();
0021 }