blob: a89ec82d9d2f2e3bbc7b0984c279113c01926a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ============================================================
* The rekonq project
* ============================================================
* SPDX-License-Identifier: GPL-3.0-only
* Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
* ============================================================ */
#include "../settings.hpp"
#include "../settingsdialog.h"
#include <QApplication>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
Settings settings(Settings::path());
SettingsDialog dlg(&settings);
dlg.show();
return QApplication::exec();
}
|