Warning: That file was not part of the compilation database. It may have many parsing errors.

1#include <KApplication>
2#include <KAboutData>
3#include <KCmdLineArgs>
4
5#include "mainwindow.h"
6
7int main (int argc, char *argv[])
8{
9 KAboutData aboutData( "tutorial-kicon", "tutorial-kicon",
10 ki18n("Tutorial KIcon"), "1.0",
11 ki18n("A simple text area using KIcons, KAction etc."),
12 KAboutData::License_GPL,
13 ki18n("Copyright (c) 2011 Developer") );
14 KCmdLineArgs::init( argc, argv, &aboutData );
15 KApplication app;
16
17 MainWindow* window = new MainWindow();
18 window->show();
19 return app.exec();
20}
21

Warning: That file was not part of the compilation database. It may have many parsing errors.