File: main.cpp

package info (click to toggle)
kf6-kxmlgui 6.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 26,692 kB
  • sloc: cpp: 16,698; xml: 45; python: 41; ansic: 22; sh: 18; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
    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)
{
    QApplication::setApplicationName(QStringLiteral("krichtexteditor"));
    QApplication app(argc, argv);
    KRichTextEditor *mw = new KRichTextEditor();
    mw->show();
    return app.exec();
}