[kde-edu]: KDE/kdeedu/libkdeedu/kdeeduplot

Jason Harris kstars at 30doradus.org
Mon Mar 26 20:48:08 CEST 2007


SVN commit 646823 by harris:

Change headers of each file in kdeeduplot to reflect license change 
(GPL->LGPL) as approved by all contributors, in preparation of moving 
this lib to kdelibs.

CCMAIL: kde-edu at kde.org
CCMAIL: toscano.pino at tiscali.it



 M  +18 -15    kplotaxis.cpp  
 M  +18 -15    kplotaxis.h  
 M  +18 -15    kplotobject.cpp  
 M  +18 -15    kplotobject.h  
 M  +18 -15    kplotwidget.cpp  
 M  +18 -15    kplotwidget.h  
 M  +2 -2      libkdeedu_plot_export.h  


--- trunk/KDE/kdeedu/libkdeedu/kdeeduplot/kplotaxis.cpp #646822:646823
@@ -1,20 +1,23 @@
-/***************************************************************************
-                          kplotaxis.cpp - An axis for the plot widget
-                             -------------------
-    begin                : 16 June 2005
-    copyright            : (C) 2005 by Andreas Nicolai
-    email                : Andreas.Nicolai at gmx.net
- ***************************************************************************/
+/*  -*- C++ -*-
+    This file is part of the KDE libraries
+    Copyright (C) 2005 Andreas Nicolai <Andreas.Nicolai at gmx.net>
 
-/***************************************************************************
- *                                                                         *
- *   This program 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 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- ***************************************************************************/
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
 
+    This library 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
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+
 #include <math.h> //for log10(), pow(), modf()
 #include <kdebug.h>
 
--- trunk/KDE/kdeedu/libkdeedu/kdeeduplot/kplotaxis.h #646822:646823
@@ -1,20 +1,23 @@
-/***************************************************************************
-                          kplotaxis.h - An axis for the plot widget
-                             -------------------
-    begin                : 16 June 2005
-    copyright            : (C) 2005 by Andreas Nicolai
-    email                : Andreas.Nicolai at gmx.net
- ***************************************************************************/
+/*  -*- C++ -*-
+    This file is part of the KDE libraries
+    Copyright (C) 2005 Andreas Nicolai <Andreas.Nicolai at gmx.net>
 
-/***************************************************************************
- *                                                                         *
- *   This program 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 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- ***************************************************************************/
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
 
+    This library 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
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+
 #ifndef KPLOTAXIS_H
 #define KPLOTAXIS_H
 
--- trunk/KDE/kdeedu/libkdeedu/kdeeduplot/kplotobject.cpp #646822:646823
@@ -1,20 +1,23 @@
-/***************************************************************************
-                          kplotobject.cpp - A list of points to be plotted
-                             -------------------
-    begin                : Sun 18 May 2003
-    copyright            : (C) 2003 by Jason Harris
-    email                : kstars at 30doradus.org
- ***************************************************************************/
+/*  -*- C++ -*-
+    This file is part of the KDE libraries
+    Copyright (C) 2003 Jason Harris <kstars at 30doradus.org>
 
-/***************************************************************************
- *                                                                         *
- *   This program 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 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- ***************************************************************************/
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
 
+    This library 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
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+
 #include <QtAlgorithms>
 #include <QPainter>
 
--- trunk/KDE/kdeedu/libkdeedu/kdeeduplot/kplotobject.h #646822:646823
@@ -1,20 +1,23 @@
-/***************************************************************************
-                          kplotobject.h - A list of points to be plotted
-                             -------------------
-    begin                : Sun 18 May 2003
-    copyright            : (C) 2003 by Jason Harris
-    email                : kstars at 30doradus.org
- ***************************************************************************/
+/*  -*- C++ -*-
+    This file is part of the KDE libraries
+    Copyright (C) 2003 Jason Harris <kstars at 30doradus.org>
 
-/***************************************************************************
- *                                                                         *
- *   This program 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 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- ***************************************************************************/
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
 
+    This library 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
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+
 #ifndef KPLOTOBJECT_H
 #define KPLOTOBJECT_H
 
--- trunk/KDE/kdeedu/libkdeedu/kdeeduplot/kplotwidget.cpp #646822:646823
@@ -1,20 +1,23 @@
-/***************************************************************************
-                          kplotwidget.cpp - A widget for plotting in KStars
-                             -------------------
-    begin                : Sun 18 May 2003
-    copyright            : (C) 2003 by Jason Harris
-    email                : kstars at 30doradus.org
- ***************************************************************************/
+/*  -*- C++ -*-
+    This file is part of the KDE libraries
+    Copyright (C) 2003 Jason Harris <kstars at 30doradus.org>
 
-/***************************************************************************
- *                                                                         *
- *   This program 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 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- ***************************************************************************/
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
 
+    This library 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
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+
 #include <math.h>
 #include <kdebug.h>
 
--- trunk/KDE/kdeedu/libkdeedu/kdeeduplot/kplotwidget.h #646822:646823
@@ -1,20 +1,23 @@
-/***************************************************************************
-                          kplotwidget.h - A generic data-plotting widget
-                             -------------------
-    begin                : Sun 18 May 2003
-    copyright            : (C) 2003 by Jason Harris
-    email                : kstars at 30doradus.org
- ***************************************************************************/
+/*  -*- C++ -*-
+    This file is part of the KDE libraries
+    Copyright (C) 2003 Jason Harris <kstars at 30doradus.org>
 
-/***************************************************************************
- *                                                                         *
- *   This program 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 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- ***************************************************************************/
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
 
+    This library 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
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+
 #ifndef KPLOTWIDGET_H
 #define KPLOTWIDGET_H
 
--- trunk/KDE/kdeedu/libkdeedu/kdeeduplot/libkdeedu_plot_export.h #646822:646823
@@ -1,5 +1,5 @@
-/*
-    This file is part of libkdeedu.
+/*  -*- C++ -*-
+    This file is part of the KDE libraries
     Copyright (c) 2006 Pino Toscano <toscano.pino at tiscali.it>
 
     This library is free software; you can redistribute it and/or


More information about the kde-edu mailing list