diff options
| author | 2008-09-18 04:21:03 +0000 | |
|---|---|---|
| committer | 2008-09-18 04:21:03 +0000 | |
| commit | 6a220c8c083c16c1cfa308c662f30c29e4801287 (patch) | |
| tree | 015088fd417f31db3b339149e5fe67df128e1c4e /src/modules/dcc | |
| parent | fixed license template for kvirc (diff) | |
| download | KVIrc-6a220c8c083c16c1cfa308c662f30c29e4801287.tar.gz KVIrc-6a220c8c083c16c1cfa308c662f30c29e4801287.tar.bz2 KVIrc-6a220c8c083c16c1cfa308c662f30c29e4801287.zip | |
fixed license template for modules from a to f
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2480 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc')
32 files changed, 115 insertions, 45 deletions
diff --git a/src/modules/dcc/adpcmcodec.cpp b/src/modules/dcc/adpcmcodec.cpp index 9b32188fc..b310db03b 100644 --- a/src/modules/dcc/adpcmcodec.cpp +++ b/src/modules/dcc/adpcmcodec.cpp @@ -1,12 +1,26 @@ +//============================================================================= // -// File : adpcmcodec.cpp -// Creation date : Wed Aug 22 19:12:50 2001 GMT by Szymon Stefanek +// File : adpcmcodec.h +// Creation date : Wed Aug 22 19:12:46 2001 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // -// Code derived from adpcm.c : Intel ADPCM coder/decoder -// Adapted for the KVirc distribution by Szymon Stefanek (pragma at kvirc dot net) -// Last revision : 20 Sep 1999 +// 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 opinion) 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. +// +//============================================================================= // // Copyright 1992 by Stichting Mathematisch Centrum, Amsterdam, The Netherlands. // All Rights Reserved diff --git a/src/modules/dcc/adpcmcodec.h b/src/modules/dcc/adpcmcodec.h index 142ff4b6d..433c036c6 100644 --- a/src/modules/dcc/adpcmcodec.h +++ b/src/modules/dcc/adpcmcodec.h @@ -1,15 +1,28 @@ #ifndef _ADPCMCODEC_H_ #define _ADPCMCODEC_H_ +//============================================================================= // // File : adpcmcodec.h // Creation date : Wed Aug 22 19:12:46 2001 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Code derived from adpcm.c : Intel ADPCM coder/decoder -// Adapted for the KVirc distribution by Szymon Stefanek (pragma at kvirc dot net) -// Last revision : 22 Aug 2001 -// See kvi_adpcm.cpp for the complete copyright notice. +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot 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 opinion) 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. +// +//============================================================================= // // adpcm.h - include file for adpcm coder. // diff --git a/src/modules/dcc/broker.cpp b/src/modules/dcc/broker.cpp index cb99e66ab..2dec808e1 100644 --- a/src/modules/dcc/broker.cpp +++ b/src/modules/dcc/broker.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : broker.cpp // Creation date : Tue Sep 19 09 2000 10:21:54 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "broker.h" #include "dialogs.h" diff --git a/src/modules/dcc/broker.h b/src/modules/dcc/broker.h index 77ef8b7c9..ee24b8ace 100644 --- a/src/modules/dcc/broker.h +++ b/src/modules/dcc/broker.h @@ -1,12 +1,12 @@ #ifndef _BROKER_H_ #define _BROKER_H_ -//======================================================================================= +//============================================================================= // // File : broker.h // Creation date : Tue Sep 19 09 2000 10:20:01 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2008 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -22,7 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // -//======================================================================================= +//============================================================================= #include "descriptor.h" diff --git a/src/modules/dcc/canvas.cpp b/src/modules/dcc/canvas.cpp index 033ba2ee5..1ca6719f3 100644 --- a/src/modules/dcc/canvas.cpp +++ b/src/modules/dcc/canvas.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : canvas.cpp // Creation date : Sun Jul 29 07 2001 20:23:13 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #define QT_MODULE_CANVAS diff --git a/src/modules/dcc/canvas.h b/src/modules/dcc/canvas.h index 887ab48c6..00ab4334a 100644 --- a/src/modules/dcc/canvas.h +++ b/src/modules/dcc/canvas.h @@ -1,11 +1,12 @@ #ifndef _CANVAS_H_ #define _CANVAS_H_ +//============================================================================= // // File : canvas.h // Creation date : Sun Jul 29 07 2001 20:17:12 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "broker.h" diff --git a/src/modules/dcc/canvaswidget.cpp b/src/modules/dcc/canvaswidget.cpp index e0b4c53f0..38633fbb8 100644 --- a/src/modules/dcc/canvaswidget.cpp +++ b/src/modules/dcc/canvaswidget.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : canvaswidget.cpp // Creation date : Mon Jul 30 07 2001 04:50:50 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "canvaswidget.h" diff --git a/src/modules/dcc/canvaswidget.h b/src/modules/dcc/canvaswidget.h index cf1d201f3..f6045c792 100644 --- a/src/modules/dcc/canvaswidget.h +++ b/src/modules/dcc/canvaswidget.h @@ -1,11 +1,12 @@ #ifndef _CANVAS_WIDGET_H_ #define _CANVAS_WIDGET_H_ +//============================================================================= // // File : canvaswidget.h // Creation date : Mon Jul 30 07 2001 04:49:49 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "broker.h" diff --git a/src/modules/dcc/chat.cpp b/src/modules/dcc/chat.cpp index 643b2e44b..4a6532d98 100644 --- a/src/modules/dcc/chat.cpp +++ b/src/modules/dcc/chat.cpp @@ -1,10 +1,10 @@ -//======================================================================================= +//============================================================================= // // File : chat.cpp // Creation date : Tue Sep 20 09 2000 15:13:13 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -20,7 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // -//======================================================================================= +//============================================================================= #include "chat.h" #include "marshal.h" diff --git a/src/modules/dcc/chat.h b/src/modules/dcc/chat.h index 37552da19..6ba2019fa 100644 --- a/src/modules/dcc/chat.h +++ b/src/modules/dcc/chat.h @@ -6,7 +6,7 @@ // Creation date : Tue Sep 20 09 2000 15:11:12 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2000-2004 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/src/modules/dcc/codec.cpp b/src/modules/dcc/codec.cpp index d768b9c93..a171c820e 100644 --- a/src/modules/dcc/codec.cpp +++ b/src/modules/dcc/codec.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : codec.cpp // Creation date : Sun Aug 26 04:19:36 2001 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "codec.h" diff --git a/src/modules/dcc/codec.h b/src/modules/dcc/codec.h index 315919161..cfdcadb7e 100644 --- a/src/modules/dcc/codec.h +++ b/src/modules/dcc/codec.h @@ -1,11 +1,12 @@ #ifndef _CODEC_H_ #define _CODEC_H_ +//============================================================================= // // File : codec.h // Creation date : Sun Aug 26 04:19:34 2001 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "kvi_string.h" #include "kvi_databuffer.h" diff --git a/src/modules/dcc/descriptor.cpp b/src/modules/dcc/descriptor.cpp index 1007ecfda..919784f7d 100644 --- a/src/modules/dcc/descriptor.cpp +++ b/src/modules/dcc/descriptor.cpp @@ -1,10 +1,10 @@ //============================================================================= // -// File : src/modules/dcc/descriptor.cpp +// File : descriptor.cpp // Creation date : Tue Jul 23 01:11:54 2002 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2002 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2002-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/src/modules/dcc/descriptor.h b/src/modules/dcc/descriptor.h index fed8004e8..ebb45963c 100644 --- a/src/modules/dcc/descriptor.h +++ b/src/modules/dcc/descriptor.h @@ -2,11 +2,11 @@ #define _DESCRIPTOR_H_ //============================================================================= // -// File : src/modules/dcc/descriptor.h +// File : descriptor.h // Creation date : Tue Jul 23 01:11:52 2002 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2002-2004 Szymon Stefanek (oragma at kvirc dot net) +// Copyright (C) 2002-2008 Szymon Stefanek (oragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/src/modules/dcc/dialogs.cpp b/src/modules/dcc/dialogs.cpp index 56193a65b..e21cce930 100644 --- a/src/modules/dcc/dialogs.cpp +++ b/src/modules/dcc/dialogs.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : dialogs.cpp // Creation date : Tue Sep 19 09 2000 15:23:12 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,8 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= + #include "dialogs.h" #include "kvi_locale.h" diff --git a/src/modules/dcc/dialogs.h b/src/modules/dcc/dialogs.h index 991ff5f6c..ef3d0419a 100644 --- a/src/modules/dcc/dialogs.h +++ b/src/modules/dcc/dialogs.h @@ -1,11 +1,12 @@ #ifndef _DIALOGS_H_ #define _DIALOGS_H_ +//============================================================================= // // File : dialogs.h // Creation date : Tue Sep 19 09 2000 15:17:22 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "broker.h" diff --git a/src/modules/dcc/gsmcodec.cpp b/src/modules/dcc/gsmcodec.cpp index 345fed909..9a68258e6 100644 --- a/src/modules/dcc/gsmcodec.cpp +++ b/src/modules/dcc/gsmcodec.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : gsmcodec.cpp // Creation date : Wed Aug 22 19:12:55 2001 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #define _GSMCODEC_CPP_ diff --git a/src/modules/dcc/gsmcodec.h b/src/modules/dcc/gsmcodec.h index af777aad5..beb4eadd8 100644 --- a/src/modules/dcc/gsmcodec.h +++ b/src/modules/dcc/gsmcodec.h @@ -1,11 +1,12 @@ #ifndef _GSMCODEC_H_ #define _GSMCODEC_H_ +//============================================================================= // // File : gsmcodec.h // Creation date : Wed Aug 22 19:12:54 2001 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "kvi_settings.h" diff --git a/src/modules/dcc/libkvidcc.cpp b/src/modules/dcc/libkvidcc.cpp index 786fe7da7..d45b9deda 100644 --- a/src/modules/dcc/libkvidcc.cpp +++ b/src/modules/dcc/libkvidcc.cpp @@ -4,7 +4,7 @@ // Creation date : Wed Sep 09 2000 20:59:01 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2000-2005 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/src/modules/dcc/marshal.cpp b/src/modules/dcc/marshal.cpp index 693c77434..4219a86a0 100644 --- a/src/modules/dcc/marshal.cpp +++ b/src/modules/dcc/marshal.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : marshal.cpp // Creation date : Sun Sep 17 2000 15:59:11 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "marshal.h" diff --git a/src/modules/dcc/marshal.h b/src/modules/dcc/marshal.h index 946a531e8..e09d1f9ad 100644 --- a/src/modules/dcc/marshal.h +++ b/src/modules/dcc/marshal.h @@ -1,11 +1,12 @@ #ifndef _MARSHAL_H_ #define _MARSHAL_H_ +//============================================================================= // // File marshal.h // Creation date : Sun Sep 17 2000 10:44:20 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "kvi_string.h" #include "kvi_sockettype.h" diff --git a/src/modules/dcc/requests.cpp b/src/modules/dcc/requests.cpp index 830c8884d..bf0245237 100644 --- a/src/modules/dcc/requests.cpp +++ b/src/modules/dcc/requests.cpp @@ -4,7 +4,7 @@ // Creation date : Tue Jul 23 02:44:38 2002 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2002 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2002-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/src/modules/dcc/send.cpp b/src/modules/dcc/send.cpp index c8c3ce1e7..d6c42abb2 100644 --- a/src/modules/dcc/send.cpp +++ b/src/modules/dcc/send.cpp @@ -4,7 +4,7 @@ // Creation date : Tue Sep 20 09 2000 15:14:14 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2000-2005 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/src/modules/dcc/send.h b/src/modules/dcc/send.h index a6dd294c0..6dd40ee10 100644 --- a/src/modules/dcc/send.h +++ b/src/modules/dcc/send.h @@ -6,7 +6,7 @@ // Creation date : Tue Sep 24 09 2000 15:06:12 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2000-2005 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/src/modules/dcc/thread.cpp b/src/modules/dcc/thread.cpp index 1d583c14d..378c6b282 100644 --- a/src/modules/dcc/thread.cpp +++ b/src/modules/dcc/thread.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : thread.cpp // Creation date : Tue Sep 20 09 2000 18:29:51 CEST Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #define _KVI_DEBUG_CHECK_RANGE_ diff --git a/src/modules/dcc/thread.h b/src/modules/dcc/thread.h index f7e8132a3..528eac538 100644 --- a/src/modules/dcc/thread.h +++ b/src/modules/dcc/thread.h @@ -1,11 +1,12 @@ #ifndef _THREAD_H_ #define _THREAD_H_ +//============================================================================= // // File : thread.h // Creation date : Tue Sep 20 09 2000 18:28:44 by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2000-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "kvi_settings.h" #include "kvi_thread.h" diff --git a/src/modules/dcc/utils.cpp b/src/modules/dcc/utils.cpp index 6fe529834..888b6d668 100644 --- a/src/modules/dcc/utils.cpp +++ b/src/modules/dcc/utils.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : utils.cpp // Creation date : Tue Jul 23 02:54:44 2002 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2002 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2002-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #define _UTILS_CPP_ diff --git a/src/modules/dcc/utils.h b/src/modules/dcc/utils.h index e98fe9187..b81fa159c 100644 --- a/src/modules/dcc/utils.h +++ b/src/modules/dcc/utils.h @@ -1,11 +1,12 @@ #ifndef _UTILS_H_ #define _UTILS_H_ +//============================================================================= // // File : utils.h // Creation date : Tue Jul 23 02:54:45 2002 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2002 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2002-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "kvi_settings.h" #include "kvi_string.h" diff --git a/src/modules/dcc/voice.cpp b/src/modules/dcc/voice.cpp index 27f872c56..d438e43e8 100644 --- a/src/modules/dcc/voice.cpp +++ b/src/modules/dcc/voice.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : voice.cpp // Creation date : Thu Aug 23 04:08:09 2001 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "voice.h" #include "marshal.h" diff --git a/src/modules/dcc/voice.h b/src/modules/dcc/voice.h index 944551dd5..551812bf0 100644 --- a/src/modules/dcc/voice.h +++ b/src/modules/dcc/voice.h @@ -1,11 +1,12 @@ #ifndef _VOICE_H_ #define _VOICE_H_ +//============================================================================= // // File : voice.h // Creation date : Thu Aug 23 04:08:10 2001 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2001-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "codec.h" #include "descriptor.h" diff --git a/src/modules/dcc/window.cpp b/src/modules/dcc/window.cpp index fa64b2ad2..18d772e59 100644 --- a/src/modules/dcc/window.cpp +++ b/src/modules/dcc/window.cpp @@ -1,9 +1,10 @@ +//============================================================================= // // File : window.cpp // Creation date : Fri Jul 26 02:04:40 2002 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2002 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2002-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -19,6 +20,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "window.h" diff --git a/src/modules/dcc/window.h b/src/modules/dcc/window.h index 16308e327..020831e0b 100644 --- a/src/modules/dcc/window.h +++ b/src/modules/dcc/window.h @@ -1,11 +1,12 @@ #ifndef _WINDOW_H_ #define _WINDOW_H_ +//============================================================================= // // File : window.h // Creation date : Fri Jul 26 02:04:39 2002 GMT by Szymon Stefanek // // This file is part of the KVirc irc client distribution -// Copyright (C) 2002 Szymon Stefanek (pragma at kvirc dot net) +// Copyright (C) 2002-2008 Szymon Stefanek (pragma at kvirc dot net) // // This program is FREE software. You can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -21,6 +22,7 @@ // along with this program. If not, write to the Free Software Foundation, // Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // +//============================================================================= #include "descriptor.h" #include "marshal.h" |
