From 6911ee1187c0b9d412b0707cc187f42d7e1095cc Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Sat, 15 Nov 2008 15:36:46 +0100 Subject: [PATCH] Insert a license note at the top of source files. The code has always been licensed under the GPL v2 because this is what the file COPYING said. Here we now make double-clear by stating this in the source file. We do not use the excessive license boilerplate that is customary elsewhere because we do not think it is necessary to repeat the content of COPYING. --- kdbg/brkpt.cpp | 9 +++++---- kdbg/brkpt.h | 11 +++++------ kdbg/commandids.h | 9 +++++---- kdbg/dbgdriver.cpp | 9 +++++---- kdbg/dbgdriver.h | 9 +++++---- kdbg/dbgmainwnd.cpp | 9 +++++---- kdbg/dbgmainwnd.h | 9 +++++---- kdbg/debugger.cpp | 9 +++++---- kdbg/debugger.h | 9 +++++---- kdbg/envvar.h | 6 +++++- kdbg/exprwnd.cpp | 9 +++++---- kdbg/exprwnd.h | 9 +++++---- kdbg/gdbdriver.cpp | 9 +++++---- kdbg/gdbdriver.h | 9 +++++---- kdbg/main.cpp | 10 +++++----- kdbg/mainwndbase.cpp | 9 +++++---- kdbg/mainwndbase.h | 9 +++++---- kdbg/memwindow.cpp | 9 +++++---- kdbg/memwindow.h | 9 +++++---- kdbg/mydebug.h | 6 +++++- kdbg/pgmargs.cpp | 9 +++++---- kdbg/pgmargs.h | 9 +++++---- kdbg/pgmsettings.cpp | 9 +++++---- kdbg/pgmsettings.h | 9 +++++---- kdbg/prefdebugger.cpp | 9 +++++---- kdbg/prefdebugger.h | 9 +++++---- kdbg/prefmisc.cpp | 9 +++++---- kdbg/prefmisc.h | 9 +++++---- kdbg/procattach.cpp | 9 +++++---- kdbg/procattach.h | 9 +++++---- kdbg/programconfig.cpp | 9 +++++---- kdbg/programconfig.h | 9 +++++---- kdbg/regwnd.cpp | 10 +++++----- kdbg/regwnd.h | 9 +++++---- kdbg/sourcewnd.cpp | 9 +++++---- kdbg/sourcewnd.h | 9 +++++---- kdbg/threadlist.cpp | 9 +++++---- kdbg/threadlist.h | 9 +++++---- kdbg/ttywnd.cpp | 9 +++++---- kdbg/ttywnd.h | 9 +++++---- kdbg/typetable.cpp | 9 +++++---- kdbg/typetable.h | 9 +++++---- kdbg/valarray.h | 9 +++++---- kdbg/winstack.cpp | 9 +++++---- kdbg/winstack.h | 9 +++++---- kdbg/xsldbgdriver.cpp | 9 +++++---- kdbg/xsldbgdriver.h | 9 +++++---- 47 files changed, 235 insertions(+), 186 deletions(-) diff --git a/kdbg/brkpt.cpp b/kdbg/brkpt.cpp index 841599e..5749fa3 100644 --- a/kdbg/brkpt.cpp +++ b/kdbg/brkpt.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include /* i18n */ #include /* i18n */ diff --git a/kdbg/brkpt.h b/kdbg/brkpt.h index ba13798..475bc23 100644 --- a/kdbg/brkpt.h +++ b/kdbg/brkpt.h @@ -1,9 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence - -// the list of breakpoints +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef BRKPT_H #define BRKPT_H diff --git a/kdbg/commandids.h b/kdbg/commandids.h index 4904716..0697d53 100644 --- a/kdbg/commandids.h +++ b/kdbg/commandids.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef COMMANDIDS_H #define COMMANDIDS_H diff --git a/kdbg/dbgdriver.cpp b/kdbg/dbgdriver.cpp index a3652c3..ec5a90b 100644 --- a/kdbg/dbgdriver.cpp +++ b/kdbg/dbgdriver.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "dbgdriver.h" #include "exprwnd.h" diff --git a/kdbg/dbgdriver.h b/kdbg/dbgdriver.h index ea1d36e..313cca2 100644 --- a/kdbg/dbgdriver.h +++ b/kdbg/dbgdriver.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef DBGDRIVER_H #define DBGDRIVER_H diff --git a/kdbg/dbgmainwnd.cpp b/kdbg/dbgmainwnd.cpp index 54cc8c2..d65d927 100644 --- a/kdbg/dbgmainwnd.cpp +++ b/kdbg/dbgmainwnd.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include #include /* i18n */ diff --git a/kdbg/dbgmainwnd.h b/kdbg/dbgmainwnd.h index 0c72b0c..30d3d13 100644 --- a/kdbg/dbgmainwnd.h +++ b/kdbg/dbgmainwnd.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef DBGMAINWND_H #define DBGMAINWND_H diff --git a/kdbg/debugger.cpp b/kdbg/debugger.cpp index e1c535b..7227633 100644 --- a/kdbg/debugger.cpp +++ b/kdbg/debugger.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "debugger.h" #include "dbgdriver.h" diff --git a/kdbg/debugger.h b/kdbg/debugger.h index 7390549..841c640 100644 --- a/kdbg/debugger.h +++ b/kdbg/debugger.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef DEBUGGER_H #define DEBUGGER_H diff --git a/kdbg/envvar.h b/kdbg/envvar.h index 40afe5c..20339b2 100644 --- a/kdbg/envvar.h +++ b/kdbg/envvar.h @@ -1,4 +1,8 @@ -// $Id$ +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef ENVVAR_H #define ENVVAR_H diff --git a/kdbg/exprwnd.cpp b/kdbg/exprwnd.cpp index aee7fd9..4b14698 100644 --- a/kdbg/exprwnd.cpp +++ b/kdbg/exprwnd.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "exprwnd.h" #include "exprwnd.moc" diff --git a/kdbg/exprwnd.h b/kdbg/exprwnd.h index dad6d7f..f6f78a1 100644 --- a/kdbg/exprwnd.h +++ b/kdbg/exprwnd.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef EXPRWND_H #define EXPRWND_H diff --git a/kdbg/gdbdriver.cpp b/kdbg/gdbdriver.cpp index fb3958e..a6b967b 100644 --- a/kdbg/gdbdriver.cpp +++ b/kdbg/gdbdriver.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "gdbdriver.h" #include "exprwnd.h" diff --git a/kdbg/gdbdriver.h b/kdbg/gdbdriver.h index f17b1f2..006c2eb 100644 --- a/kdbg/gdbdriver.h +++ b/kdbg/gdbdriver.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef GDBDRIVER_H #define GDBDRIVER_H diff --git a/kdbg/main.cpp b/kdbg/main.cpp index 68680d5..f99b950 100644 --- a/kdbg/main.cpp +++ b/kdbg/main.cpp @@ -1,8 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence - +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include #include /* i18n */ diff --git a/kdbg/mainwndbase.cpp b/kdbg/mainwndbase.cpp index a753e14..6f39a24 100644 --- a/kdbg/mainwndbase.cpp +++ b/kdbg/mainwndbase.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include #include /* i18n */ diff --git a/kdbg/mainwndbase.h b/kdbg/mainwndbase.h index b0f3041..0a57942 100644 --- a/kdbg/mainwndbase.h +++ b/kdbg/mainwndbase.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef MAINWNDBASE_H #define MAINWNDBASE_H diff --git a/kdbg/memwindow.cpp b/kdbg/memwindow.cpp index d0ce2b3..05727d1 100644 --- a/kdbg/memwindow.cpp +++ b/kdbg/memwindow.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "memwindow.h" #include diff --git a/kdbg/memwindow.h b/kdbg/memwindow.h index a7b7805..3bc3b98 100644 --- a/kdbg/memwindow.h +++ b/kdbg/memwindow.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef MEMWINDOW_H #define MEMWINDOW_H diff --git a/kdbg/mydebug.h b/kdbg/mydebug.h index ba15607..99f4b58 100644 --- a/kdbg/mydebug.h +++ b/kdbg/mydebug.h @@ -1,4 +1,8 @@ -// $Id$ +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include #include diff --git a/kdbg/pgmargs.cpp b/kdbg/pgmargs.cpp index a517509..a17ebe5 100644 --- a/kdbg/pgmargs.cpp +++ b/kdbg/pgmargs.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "pgmargs.h" #include diff --git a/kdbg/pgmargs.h b/kdbg/pgmargs.h index c6d70ab..fb1ec76 100644 --- a/kdbg/pgmargs.h +++ b/kdbg/pgmargs.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef PgmArgs_included #define PgmArgs_included diff --git a/kdbg/pgmsettings.cpp b/kdbg/pgmsettings.cpp index b37b6d3..6cd4d8d 100644 --- a/kdbg/pgmsettings.cpp +++ b/kdbg/pgmsettings.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "pgmsettings.h" #include /* i18n */ diff --git a/kdbg/pgmsettings.h b/kdbg/pgmsettings.h index 3bf46b9..27ab174 100644 --- a/kdbg/pgmsettings.h +++ b/kdbg/pgmsettings.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef PGMSETTINGS_H #define PGMSETTINGS_H diff --git a/kdbg/prefdebugger.cpp b/kdbg/prefdebugger.cpp index 86fac81..f47dd53 100644 --- a/kdbg/prefdebugger.cpp +++ b/kdbg/prefdebugger.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include /* i18n */ #include diff --git a/kdbg/prefdebugger.h b/kdbg/prefdebugger.h index 0962972..594bfa2 100644 --- a/kdbg/prefdebugger.h +++ b/kdbg/prefdebugger.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef PREFDEBUGGER_H #define PREFDEBUGGER_H diff --git a/kdbg/prefmisc.cpp b/kdbg/prefmisc.cpp index 052f354..2c79bf8 100644 --- a/kdbg/prefmisc.cpp +++ b/kdbg/prefmisc.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "prefmisc.h" #include /* i18n */ diff --git a/kdbg/prefmisc.h b/kdbg/prefmisc.h index feccb24..45701db 100644 --- a/kdbg/prefmisc.h +++ b/kdbg/prefmisc.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef PREFMISC_H #define PREFMISC_H diff --git a/kdbg/procattach.cpp b/kdbg/procattach.cpp index 463d123..3b248cd 100644 --- a/kdbg/procattach.cpp +++ b/kdbg/procattach.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "procattach.h" #include diff --git a/kdbg/procattach.h b/kdbg/procattach.h index e699762..1d600f0 100644 --- a/kdbg/procattach.h +++ b/kdbg/procattach.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef ProcAttach_included #define ProcAttach_included diff --git a/kdbg/programconfig.cpp b/kdbg/programconfig.cpp index 755ac02..28f837a 100644 --- a/kdbg/programconfig.cpp +++ b/kdbg/programconfig.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "programconfig.h" #include diff --git a/kdbg/programconfig.h b/kdbg/programconfig.h index 420764c..325769d 100644 --- a/kdbg/programconfig.h +++ b/kdbg/programconfig.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is licensed under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include diff --git a/kdbg/regwnd.cpp b/kdbg/regwnd.cpp index 92d38a5..b2d87c7 100644 --- a/kdbg/regwnd.cpp +++ b/kdbg/regwnd.cpp @@ -1,8 +1,8 @@ -// -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- -// $Id$ - -// Copyright by Judin Max, Johannes Sixt, Daniel Kristjansson -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Max Judin, Johannes Sixt, Daniel Kristjansson + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include #include diff --git a/kdbg/regwnd.h b/kdbg/regwnd.h index a2f401e..57eeec5 100644 --- a/kdbg/regwnd.h +++ b/kdbg/regwnd.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Judin Max, Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Max Judin, Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef REGWND_H #define REGWND_H diff --git a/kdbg/sourcewnd.cpp b/kdbg/sourcewnd.cpp index ed52bfe..86b8318 100644 --- a/kdbg/sourcewnd.cpp +++ b/kdbg/sourcewnd.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "debugger.h" #include "sourcewnd.h" diff --git a/kdbg/sourcewnd.h b/kdbg/sourcewnd.h index d217eb3..85c2e70 100644 --- a/kdbg/sourcewnd.h +++ b/kdbg/sourcewnd.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef SOURCEWND_H #define SOURCEWND_H diff --git a/kdbg/threadlist.cpp b/kdbg/threadlist.cpp index faf3f9f..d164f5a 100644 --- a/kdbg/threadlist.cpp +++ b/kdbg/threadlist.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "threadlist.h" #include "dbgdriver.h" diff --git a/kdbg/threadlist.h b/kdbg/threadlist.h index ca73bbf..2df833b 100644 --- a/kdbg/threadlist.h +++ b/kdbg/threadlist.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef THREADLIST_H #define THREADLIST_H diff --git a/kdbg/ttywnd.cpp b/kdbg/ttywnd.cpp index 89a8035..b23f2f4 100644 --- a/kdbg/ttywnd.cpp +++ b/kdbg/ttywnd.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include #include diff --git a/kdbg/ttywnd.h b/kdbg/ttywnd.h index 741a468..3995ffc 100644 --- a/kdbg/ttywnd.h +++ b/kdbg/ttywnd.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef TTYWND_H #define TTYWND_H diff --git a/kdbg/typetable.cpp b/kdbg/typetable.cpp index 945bf89..e89e80b 100644 --- a/kdbg/typetable.cpp +++ b/kdbg/typetable.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include #include diff --git a/kdbg/typetable.h b/kdbg/typetable.h index dc05a53..93fb840 100644 --- a/kdbg/typetable.h +++ b/kdbg/typetable.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include #include diff --git a/kdbg/valarray.h b/kdbg/valarray.h index ce639f5..2eaa424 100644 --- a/kdbg/valarray.h +++ b/kdbg/valarray.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ // an array template class that holds values (not pointers to values) diff --git a/kdbg/winstack.cpp b/kdbg/winstack.cpp index 3bf81d2..3591c6d 100644 --- a/kdbg/winstack.cpp +++ b/kdbg/winstack.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "winstack.h" #include "sourcewnd.h" diff --git a/kdbg/winstack.h b/kdbg/winstack.h index 065de3c..8422575 100644 --- a/kdbg/winstack.h +++ b/kdbg/winstack.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef WINSTACK_H #define WINSTACK_H diff --git a/kdbg/xsldbgdriver.cpp b/kdbg/xsldbgdriver.cpp index bbaedb9..b6e839b 100644 --- a/kdbg/xsldbgdriver.cpp +++ b/kdbg/xsldbgdriver.cpp @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt, Keith Isdale -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt, Keith Isdale + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #include "xsldbgdriver.h" #include "exprwnd.h" diff --git a/kdbg/xsldbgdriver.h b/kdbg/xsldbgdriver.h index 4a8700d..bcd5246 100644 --- a/kdbg/xsldbgdriver.h +++ b/kdbg/xsldbgdriver.h @@ -1,7 +1,8 @@ -// $Id$ - -// Copyright by Johannes Sixt, Keith Isdale -// This file is under GPL, the GNU General Public Licence +/* + * Copyright Johannes Sixt, Keith Isdale + * This file is licensed under the GNU General Public License Version 2. + * See the file COPYING in the toplevel directory of the source directory. + */ #ifndef XSLDBGDRIVER_H #define XSLDBGDRIVER_H -- 2.11.4.GIT