Warning, file /frameworks/sonnet/examples/configdialog.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /** 0002 * test_configdialog.cpp 0003 * 0004 * SPDX-FileCopyrightText: 2004 Zack Rusin <zack@kde.org> 0005 * 0006 * SPDX-License-Identifier: LGPL-2.1-or-later 0007 */ 0008 #include "configdialog.h" 0009 #include "speller.h" 0010 0011 #include <QApplication> 0012 0013 using namespace Sonnet; 0014 0015 int main(int argc, char **argv) 0016 { 0017 QApplication app(argc, argv); 0018 0019 ConfigDialog *dialog = new ConfigDialog(nullptr); 0020 0021 dialog->show(); 0022 0023 return app.exec(); 0024 }