File indexing completed on 2024-12-22 03:46:49

0001 /*
0002   This file is part of the KTextTemplate library
0003 
0004   SPDX-FileCopyrightText: 2010 Stephen Kelly <steveire@gmail.com>
0005 
0006   SPDX-License-Identifier: LGPL-2.1-or-later
0007 
0008 */
0009 
0010 #include "mainwindow.h"
0011 
0012 #include <QApplication>
0013 
0014 int main(int argc, char *argv[])
0015 {
0016     QApplication app(argc, argv);
0017 
0018     MainWindow mw;
0019     mw.show();
0020     mw.resize(1200, 770);
0021 
0022     return app.exec();
0023 }