summaryrefslogtreecommitdiffstats
path: root/examples/widgets/widgets/shortcuteditor/main.cpp
blob: 029f7a351ab5594ec1723f7009df9f0fd23a86eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2022 Laszlo Papp <lpapp@kde.org>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "application.h"
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    Application app(argc, argv);
    MainWindow window;
    window.show();
    return app.exec();
}