[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    branches/work/kreversi_rewrite
From:       Dmitry Suzdalev <dimsuz () gmail ! com>
Date:       2006-09-08 9:57:22
Message-ID: 1157709442.761191.24099.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 582111 by dimsuz:

Added license stuff


 M  +23 -0     kreversiboard.cpp  
 M  +22 -0     kreversiboard.h  
 M  +22 -0     kreversichip.cpp  
 M  +22 -0     kreversichip.h  
 M  +22 -0     kreversigame.cpp  
 M  +22 -0     kreversigame.h  
 M  +22 -0     kreversiscene.cpp  
 M  +22 -0     kreversiscene.h  
 M  +22 -0     kreversiview.cpp  
 M  +22 -0     kreversiview.h  
 M  +4 -3      main.cpp  
 M  +22 -0     mainwindow.cpp  
 M  +22 -0     mainwindow.h  


--- branches/work/kreversi_rewrite/kreversiboard.cpp #582110:582111
@@ -1,3 +1,26 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
+
 #include <kdebug.h>
 
 #include "kreversiboard.h"
--- branches/work/kreversi_rewrite/kreversiboard.h #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #ifndef KREVERSI_BOARD_H
 #define KREVERSI_BOARD_H
 
--- branches/work/kreversi_rewrite/kreversichip.cpp #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #include "kreversichip.h"
 #include <QPainter>
 #include <QPixmap>
--- branches/work/kreversi_rewrite/kreversichip.h #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #ifndef KREVERSI_CHIP_H
 #define KREVERSI_CHIP_H
 
--- branches/work/kreversi_rewrite/kreversigame.cpp #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #include <kdebug.h>
 
 #include "kreversiboard.h"
--- branches/work/kreversi_rewrite/kreversigame.h #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #ifndef KREVERSI_GAME_H
 #define KREVERSI_GAME_H
 
--- branches/work/kreversi_rewrite/kreversiscene.cpp #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #include <QGraphicsSceneMouseEvent>
 #include <QPainter>
 #include <QTimer>
--- branches/work/kreversi_rewrite/kreversiscene.h #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #ifndef KREVERSI_SCENE_H
 #define KREVERSI_SCENE_H
 
--- branches/work/kreversi_rewrite/kreversiview.cpp #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #include "kreversiview.h"
 
 #include <QGraphicsScene>
--- branches/work/kreversi_rewrite/kreversiview.h #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #ifndef KREVERSI_VIEW_H
 #define KREVERSI_VIEW_H
 
--- branches/work/kreversi_rewrite/main.cpp #582110:582111
@@ -4,18 +4,18 @@
  *
  * This file is part of the KDE project "KReversi"
  *
- * KREVERSI is free software; you can redistribute it and/or modify
+ * KReversi 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 2, or (at your option)
  * any later version.
  *
- * KREVERSI is distributed in the hope that it will be useful,
+ * KReversi 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.
  *
  * You should have received a copy of the GNU General Public License
- * along with KREVERSI; see the file COPYING.  If not, write to
+ * along with KReversi; see the file COPYING.  If not, write to
  * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  *
@@ -40,6 +40,7 @@
             KREVERSI_VERSION, description, KAboutData::License_GPL,
             "(c) 1997-2000, Mario Weilguni\n(c) 2006, Dmitry Suzdalev");
     aboutData.addAuthor("Mario Weilguni",I18N_NOOP("Original author"), \
"mweilguni@sime.com"); +    aboutData.addAuthor("Inge Wallin",I18N_NOOP("Original \
                author"), "inge@lysator.liu.se");
     aboutData.addAuthor("Dmitry Suzdalev", I18N_NOOP("Game rewrite for KDE4. Current \
                maintainer."), "dimsuz@gmail.com");
     aboutData.addCredit("Mats Luthman", I18N_NOOP("Game engine, ported from his JAVA \
                applet."), 0);
     aboutData.addCredit("Arne Klaassen", I18N_NOOP("Raytraced chips."), 0);
--- branches/work/kreversi_rewrite/mainwindow.cpp #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #include "mainwindow.h"
 #include "kreversigame.h"
 #include "kreversiscene.h"
--- branches/work/kreversi_rewrite/mainwindow.h #582110:582111
@@ -1,3 +1,25 @@
+/*******************************************************************
+ *
+ * Copyright 2006 Dmitry Suzdalev <dimsuz@gmail.com>
+ *
+ * This file is part of the KDE project "KReversi"
+ *
+ * KReversi 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 2, or (at your option)
+ * any later version.
+ *
+ * KReversi 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with KReversi; see the file COPYING.  If not, write to
+ * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ ********************************************************************/
 #ifndef KREVERSI_MAIN_WINDOW_H
 #define KREVERSI_MAIN_WINDOW_H
 


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic