File indexing completed on 2024-04-14 14:18:52

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2013 David Faure <faure+bluesystem@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 
0008 #include "klanguagebutton.h"
0009 
0010 #include <QApplication>
0011 
0012 int main(int argc, char **argv)
0013 {
0014     QApplication::setApplicationName(QStringLiteral("KLanguageButtonTest"));
0015     QApplication app(argc, argv);
0016 
0017     KLanguageButton button;
0018     button.loadAllLanguages();
0019     button.show();
0020     return app.exec();
0021 }