File indexing completed on 2024-04-21 15:05:55

0001 /*
0002     KDE Rich Text Editor
0003     SPDX-FileCopyrightText: 2008 Stephen Kelly <steveire@gmail.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 
0008 #include "krichtexteditor.h"
0009 #include <QApplication>
0010 
0011 int main(int argc, char **argv)
0012 {
0013     QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
0014     QApplication::setApplicationName(QStringLiteral("krichtexteditor"));
0015     QApplication app(argc, argv);
0016     KRichTextEditor *mw = new KRichTextEditor();
0017     mw->show();
0018     app.exec();
0019 }