Use CuteChessApplication as base for the GUI
[sloppygui.git] / projects / gui / src / cutechessapp.cpp
blobc65acc990d91a7c08cd8dfddf4aa3a936204486b
1 /*
2 This file is part of Cute Chess.
4 Cute Chess is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 Cute Chess is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with Cute Chess. If not, see <http://www.gnu.org/licenses/>.
18 #include <QCoreApplication>
19 #include <QTime>
20 #include <QSettings>
22 #include "cutechessapp.h"
24 CuteChessApplication::CuteChessApplication(int& argc, char* argv[])
25 : QApplication(argc, argv)
27 qsrand(QTime(0,0,0).secsTo(QTime::currentTime()));
29 QCoreApplication::setOrganizationName("cutechess");
30 QCoreApplication::setOrganizationDomain("cutechess.org");
31 QCoreApplication::setApplicationName("cutechess");
33 // Use Ini format on all platforms
34 QSettings::setDefaultFormat(QSettings::IniFormat);
37 CuteChessApplication::~CuteChessApplication()