File indexing completed on 2024-05-19 05:21:47

0001 /*
0002     This file is part of KDE.
0003 
0004     SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #include "inserthtmldialog.h"
0010 
0011 #include <QApplication>
0012 
0013 int main(int argv, char **argc)
0014 {
0015     QApplication app(argv, argc);
0016 
0017     KPIMTextEdit::InsertHtmlDialog insertHtmlDialog;
0018     insertHtmlDialog.show();
0019 
0020     return app.exec();
0021 }