From e114059949b50759173a13b4a46c1af66ec41f73 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Arto=20Hyv=C3=A4ttinen?= Date: Mon, 16 Aug 2010 20:16:14 +0300 Subject: [PATCH] Hour glass default time 0'0''30 --- classes/timecontrol/hourglasstimecontrol.cpp | 2 +- main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/classes/timecontrol/hourglasstimecontrol.cpp b/classes/timecontrol/hourglasstimecontrol.cpp index 340b926..7f5baf3 100644 --- a/classes/timecontrol/hourglasstimecontrol.cpp +++ b/classes/timecontrol/hourglasstimecontrol.cpp @@ -46,7 +46,7 @@ ClocksWidget* HourGlassTimeControl::initGame(bool useLastSettings) { BasicDialog dialog(getName()); dialog.disableAddition(); - dialog.init(QTime(0,30),QTime(0,30)); + dialog.init(QTime(0,0,30),QTime(0,0,30)); if( useLastSettings || dialog.exec() == QDialog::Accepted) { diff --git a/main.cpp b/main.cpp index f70a4dd..f31be17 100644 --- a/main.cpp +++ b/main.cpp @@ -41,7 +41,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - +@todo Game log */ @@ -55,7 +55,7 @@ int main(int argc, char *argv[]) a.setApplicationName( a.tr("Chess Clock","Application name") ); a.setOrganizationName("Chess Clock"); a.setOrganizationDomain("chessclock.garage.maemo.org"); - a.setApplicationVersion("0.1.1"); + a.setApplicationVersion("0.2.0"); ChessClockWindow w; -- 1.7.9.5