Fixed an eror in the web pages
[chessclock] / main.cpp
index 213ff2b..53ba074 100644 (file)
--- a/main.cpp
+++ b/main.cpp
 **************************************************************************/
 
 
+/*! @mainpage Chess Clock
+
+  @author Arto Hyvättinen
+  @version 1.1
+
+
+    Chess Clock
+
+    Game clock for chess players with N900. Support many game controls.
+
+    Copyright © Arto Hyvättinen 2010
+
+    Chess Clock is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    Chess Clock is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+@todo Game log
+
+  */
+
+
 #include <QtGui/QApplication>
 #include "chessclockwindow.h"
 
 int main(int argc, char *argv[])
 {
     QApplication a(argc, argv);
+    a.setApplicationName( a.tr("Chess Clock","Application name") );
+    a.setOrganizationName("Chess Clock");
+    a.setOrganizationDomain("chessclock.garage.maemo.org");
+    a.setApplicationVersion("1.1.2");
+
     ChessClockWindow w;
+
 #if defined(Q_WS_S60)
     w.showMaximized();
 #else