File indexing completed on 2024-05-12 15:47:07

0001 /*
0002     SPDX-FileCopyrightText: 2007 Pino Toscano <pino@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include <QApplication>
0008 
0009 #include <kwalletwizard.h>
0010 
0011 int main(int argc, char **argv)
0012 {
0013     QApplication app(argc, argv);
0014 
0015     KWalletWizard wizard;
0016     wizard.show();
0017 
0018     int ret = app.exec();
0019 
0020     return ret;
0021 }