File: main.cpp

package info (click to toggle)
kxmlgui 5.116.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 27,240 kB
  • sloc: cpp: 18,360; python: 41; sh: 21; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 488 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
    KDE Rich Text Editor
    SPDX-FileCopyrightText: 2008 Stephen Kelly <steveire@gmail.com>

    SPDX-License-Identifier: LGPL-2.1-or-later
*/

#include "krichtexteditor.h"
#include <QApplication>

int main(int argc, char **argv)
{
    QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
    QApplication::setApplicationName(QStringLiteral("krichtexteditor"));
    QApplication app(argc, argv);
    KRichTextEditor *mw = new KRichTextEditor();
    mw->show();
    app.exec();
}