Warning, file /libraries/baloo-widgets/test/tagwidgetapp.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2010 Sebastian Trueg <trueg@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include "tagwidgettest.h"
0008 
0009 #include <QApplication>
0010 #include <QCoreApplication>
0011 
0012 int main(int argc, char **argv)
0013 {
0014     QApplication app(argc, argv);
0015     QCoreApplication::setApplicationName(QStringLiteral("TagWidgetApp"));
0016     TagWidgetTest tw;
0017     tw.show();
0018     return app.exec();
0019 }