File indexing completed on 2024-06-16 04:27:59

0001 /*
0002    SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "languagetoolwidget.h"
0008 #include <QApplication>
0009 #include <QStandardPaths>
0010 
0011 int main(int argc, char **argv)
0012 {
0013     QApplication app(argc, argv);
0014     QStandardPaths::setTestModeEnabled(true);
0015 
0016     LanguageToolWidget w;
0017     w.show();
0018     app.exec();
0019     return 0;
0020 }