File: ksycocaupdatetest.cpp

package info (click to toggle)
kf6-kio 6.23.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,084 kB
  • sloc: cpp: 102,370; xml: 519; ansic: 215; python: 200; ruby: 60; sh: 21; makefile: 14
file content (12 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#include <kbuildsycocaprogressdialog.h>

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication::setApplicationName(QStringLiteral("whatever"));
    QApplication k(argc, argv);

    KBuildSycocaProgressDialog::rebuildKSycoca(nullptr);
    return 0;
}