File: klanguagebuttontest.cpp

package info (click to toggle)
kconfigwidgets 5.116.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,220 kB
  • sloc: cpp: 8,164; perl: 43; sh: 21; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
    This file is part of the KDE libraries
    SPDX-FileCopyrightText: 2013 David Faure <faure+bluesystem@kde.org>

    SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/

#include "klanguagebutton.h"

#include <QApplication>

int main(int argc, char **argv)
{
    QApplication::setApplicationName(QStringLiteral("KLanguageButtonTest"));
    QApplication app(argc, argv);

    KLanguageButton button;
    button.loadAllLanguages();
    button.show();
    return app.exec();
}