File indexing completed on 2024-12-01 04:37:05
0001 /* 0002 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "dialogs/createsoundmessagewizard.h" 0008 #include <QApplication> 0009 #include <QCommandLineParser> 0010 #include <QStandardPaths> 0011 int main(int argc, char **argv) 0012 { 0013 QApplication app(argc, argv); 0014 QStandardPaths::setTestModeEnabled(true); 0015 QCommandLineParser parser; 0016 parser.addVersionOption(); 0017 parser.addHelpOption(); 0018 0019 parser.process(app); 0020 auto d = new CreateSoundMessageWizard(nullptr); 0021 d->show(); 0022 0023 return app.exec(); 0024 }