From 0bdbefcda7b109d0e7012dcce0750151c2a2fc3d Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Wed, 3 Jun 2009 20:46:07 +0000 Subject: [PATCH] Added copyright/license to source files that lacked it. --- src/BeOS_print.cpp | 3 ++ src/BeOS_print.h | 70 +++++++++++++++++++++++----------------------- src/dirwalk.c | 20 +++++++++++++ src/dirwalk.h | 20 +++++++++++++ src/fonts.c | 20 +++++++++++++ src/fonts.h | 20 +++++++++++++ src/get_fname.c | 20 +++++++++++++ src/get_fname.h | 20 +++++++++++++ src/i18n.h | 17 ++++++++++- src/playsound.c | 24 ++++++++++++++++ src/playsound.h | 23 +++++++++++++++ src/tip_tux.h | 15 ++++++++++ src/titles.h | 15 ++++++++++ src/tools.h | 15 ++++++++++ 14 files changed, 266 insertions(+), 36 deletions(-) diff --git a/src/BeOS_print.cpp b/src/BeOS_print.cpp index d970ba51a..02561857c 100644 --- a/src/BeOS_print.cpp +++ b/src/BeOS_print.cpp @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ */ /* Jan. 17, 2003 */ diff --git a/src/BeOS_print.h b/src/BeOS_print.h index 2724d1c4d..26f7a6b59 100644 --- a/src/BeOS_print.h +++ b/src/BeOS_print.h @@ -1,43 +1,43 @@ -/* BeOS_print.h */ +/* BeOS_print.h */ + +/* printing support for Tux Paint */ +/* Marcin 'Shard' Konicki */ + +/* + 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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) +*/ + +/* Jan. 17, 2003 */ +/* $Id$ */ -/* printing support for Tux Paint */ -/* Marcin 'Shard' Konicki */ - -/* - 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 program 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 this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - (See COPYING.txt) -*/ - -/* Jan. 17, 2003 */ -/* $Id$ */ - -#ifndef __BEOS_PRINT_H__ -#define __BEOS_PRINT_H__ - -#include "SDL.h" - -#ifdef __cplusplus +#ifndef __BEOS_PRINT_H__ +#define __BEOS_PRINT_H__ + +#include "SDL.h" + +#ifdef __cplusplus extern "C" { - + #endif /* */ extern int SurfacePrint(SDL_Surface * surf); extern int IsPrinterAvailable(); - -#ifdef __cplusplus -} + +#ifdef __cplusplus +} #endif /* */ - + #endif /* */ diff --git a/src/dirwalk.c b/src/dirwalk.c index ffa6b97dc..3272de826 100644 --- a/src/dirwalk.c +++ b/src/dirwalk.c @@ -1,5 +1,25 @@ /* dirwalk.c + + Copyright (c) 2009 + http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ */ #include diff --git a/src/dirwalk.h b/src/dirwalk.h index cd33a8842..5b54f827c 100644 --- a/src/dirwalk.h +++ b/src/dirwalk.h @@ -1,5 +1,25 @@ /* dirwalk.h + + Copyright (c) 2009 + http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ */ #ifndef DIRWALK_H diff --git a/src/fonts.c b/src/fonts.c index b0681203d..0231ffa34 100644 --- a/src/fonts.c +++ b/src/fonts.c @@ -1,5 +1,25 @@ /* fonts.c + + Copyright (c) 2009 + http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ */ #include diff --git a/src/fonts.h b/src/fonts.h index 728867b8e..4d26f3aab 100644 --- a/src/fonts.h +++ b/src/fonts.h @@ -1,5 +1,25 @@ /* fonts.h + + Copyright (c) 2009 + http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ */ #ifndef FONTS_H diff --git a/src/get_fname.c b/src/get_fname.c index febd847b8..880dc3b04 100644 --- a/src/get_fname.c +++ b/src/get_fname.c @@ -1,5 +1,25 @@ /* get_fname.c + + Copyright (c) 2009 + http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ */ #include diff --git a/src/get_fname.h b/src/get_fname.h index 8a6f9c3ca..6d013a736 100644 --- a/src/get_fname.h +++ b/src/get_fname.h @@ -1,5 +1,25 @@ /* get_fname.h + + Copyright (c) 2009 + http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ */ #ifndef GET_FNAME_H diff --git a/src/i18n.h b/src/i18n.h index 1bec5a66b..41fe47a45 100644 --- a/src/i18n.h +++ b/src/i18n.h @@ -4,10 +4,25 @@ For Tux Paint Language-related functions - Copyright (c) 2002-2008 by Bill Kendrick and others + Copyright (c) 2002-2009 by Bill Kendrick and others bill@newbreedsoftware.com http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + $Id$ June 14, 2002 - January 23, 2009 diff --git a/src/playsound.c b/src/playsound.c index ad49960b0..1760103af 100644 --- a/src/playsound.c +++ b/src/playsound.c @@ -1,3 +1,27 @@ +/* + playsound.c + + Copyright (c) 2002-2009 + http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ +*/ + #include "playsound.h" #include "debug.h" diff --git a/src/playsound.h b/src/playsound.h index 57763b477..fe17dd43b 100644 --- a/src/playsound.h +++ b/src/playsound.h @@ -1,3 +1,26 @@ +/* playsound.h + + Copyright (c) 2002-2009 + http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + + $Id$ +*/ + #ifndef PLAYSOUND_H #define PLAYSOUND_H diff --git a/src/tip_tux.h b/src/tip_tux.h index 4735f93d5..5c52667d4 100644 --- a/src/tip_tux.h +++ b/src/tip_tux.h @@ -8,6 +8,21 @@ bill@newbreedsoftware.com http://www.newbreedsoftware.com/tuxpaint/ + 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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + June 17, 2002 - June 27, 2002 $Id$ */ diff --git a/src/titles.h b/src/titles.h index e44af9343..f5f80008b 100644 --- a/src/titles.h +++ b/src/titles.h @@ -8,6 +8,21 @@ bill@newbreedsoftware.com http://www.tuxpaint.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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + June 14, 2002 - July 17, 2007 $Id$ */ diff --git a/src/tools.h b/src/tools.h index fcd001e0f..ece145b46 100644 --- a/src/tools.h +++ b/src/tools.h @@ -4,6 +4,21 @@ For Tux Paint List of available tools. + 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 program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (See COPYING.txt) + Copyright (c) 2002-2007 by Bill Kendrick bill@newbreedsoftware.com http://www.tuxpaint.org/