File: kbugreporttest.cpp

package info (click to toggle)
kf6-kxmlgui 6.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,708 kB
  • sloc: cpp: 16,748; xml: 45; python: 41; ansic: 22; sh: 18; makefile: 7
file content (51 lines) | stat: -rw-r--r-- 1,641 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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
    This file is part of the KDE libraries
    SPDX-FileCopyrightText: 2005 Joseph Wenninger <jowenn@kde.org>

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

#include <KAboutData>
#include <KLocalizedString>
#include <QApplication>
#include <kbugreport.h>

int main(int argc, char **argv)
{
    QApplication a(argc, argv);
    a.setQuitOnLastWindowClosed(false);

    // First a bug report to bugs.kde.org
    KAboutData about(QStringLiteral("kbugreporttest"), i18n("kbugreporttest"), QStringLiteral("version"));
    KBugReport rep(about);
    rep.exec();

    // Then a bug report by email.
    // Change the email address to check if it worked :)
    KAboutData about1(QStringLiteral("kbugreporttest"),
                      i18n("kbugreporttest"),
                      QStringLiteral("version"),
                      i18n("description"),
                      KAboutLicense::Unknown,
                      i18n("copyright"),
                      i18n("bug report tool"),
                      QString(),
                      QStringLiteral("null@bugs.kde.org"));
    KBugReport rep1(about1);
    rep1.exec();

    // Then a web bug report.
    KAboutData about2(QStringLiteral("kbugreporttest"),
                      i18n("kbugreporttest"),
                      QStringLiteral("version"),
                      i18n("description"),
                      KAboutLicense::Unknown,
                      i18n("copyright"),
                      i18n("bug report tool"),
                      QString(),
                      QStringLiteral("https://bugs.kde.org"));
    KBugReport rep2(about2);
    rep2.exec();

    return 0;
}