summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
Diffstat (limited to 'gdk')
-rw-r--r--gdk/gdk.c8
-rw-r--r--gdk/gdk.h8
-rw-r--r--gdk/gdkcc.c6
-rw-r--r--gdk/gdkcolor.c8
-rw-r--r--gdk/gdkcursor.c8
-rw-r--r--gdk/gdkdnd.c8
-rw-r--r--gdk/gdkdraw.c8
-rw-r--r--gdk/gdkevents.c7
-rw-r--r--gdk/gdkfont.c8
-rw-r--r--gdk/gdkgc.c8
-rw-r--r--gdk/gdkglobals.c8
-rw-r--r--gdk/gdki18n.h7
-rw-r--r--gdk/gdkim.c7
-rw-r--r--gdk/gdkimage.c8
-rw-r--r--gdk/gdkinput.c8
-rw-r--r--gdk/gdkinput.h7
-rw-r--r--gdk/gdkinputcommon.h7
-rw-r--r--gdk/gdkinputgxi.h7
-rw-r--r--gdk/gdkinputnone.h7
-rw-r--r--gdk/gdkinputxfree.h7
-rw-r--r--gdk/gdkpixmap.c8
-rw-r--r--gdk/gdkprivate.h8
-rw-r--r--gdk/gdkproperty.c8
-rw-r--r--gdk/gdkrectangle.c8
-rw-r--r--gdk/gdkregion.c9
-rw-r--r--gdk/gdkrgb.c7
-rw-r--r--gdk/gdkrgb.h8
-rw-r--r--gdk/gdkselection.c8
-rw-r--r--gdk/gdktypes.h8
-rw-r--r--gdk/gdkvisual.c8
-rw-r--r--gdk/gdkwindow.c7
-rw-r--r--gdk/gdkx.h8
-rw-r--r--gdk/gdkxid.c8
-rw-r--r--gdk/x11/gdkcc-x11.c6
-rw-r--r--gdk/x11/gdkcolor-x11.c8
-rw-r--r--gdk/x11/gdkcursor-x11.c8
-rw-r--r--gdk/x11/gdkdnd-x11.c8
-rw-r--r--gdk/x11/gdkevents-x11.c7
-rw-r--r--gdk/x11/gdkfont-x11.c8
-rw-r--r--gdk/x11/gdkglobals-x11.c8
-rw-r--r--gdk/x11/gdkim-x11.c7
-rw-r--r--gdk/x11/gdkimage-x11.c8
-rw-r--r--gdk/x11/gdkinput-gxi.c7
-rw-r--r--gdk/x11/gdkinput-none.c7
-rw-r--r--gdk/x11/gdkinput-x11.c7
-rw-r--r--gdk/x11/gdkinput-xfree.c7
-rw-r--r--gdk/x11/gdkinput.c8
-rw-r--r--gdk/x11/gdkmain-x11.c8
-rw-r--r--gdk/x11/gdkpixmap-x11.c8
-rw-r--r--gdk/x11/gdkproperty-x11.c8
-rw-r--r--gdk/x11/gdkregion-x11.c9
-rw-r--r--gdk/x11/gdkselection-x11.c8
-rw-r--r--gdk/x11/gdkvisual-x11.c8
-rw-r--r--gdk/x11/gdkwindow-x11.c7
-rw-r--r--gdk/x11/gdkx.h8
-rw-r--r--gdk/x11/gdkxid.c8
56 files changed, 427 insertions, 2 deletions
diff --git a/gdk/gdk.c b/gdk/gdk.c
index f10a89830..afcc3dd25 100644
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "config.h"
#include <ctype.h>
diff --git a/gdk/gdk.h b/gdk/gdk.h
index 113711b06..d3afbacbe 100644
--- a/gdk/gdk.h
+++ b/gdk/gdk.h
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GDK_H__
#define __GDK_H__
diff --git a/gdk/gdkcc.c b/gdk/gdkcc.c
index df7c0a783..573b2efa1 100644
--- a/gdk/gdkcc.c
+++ b/gdk/gdkcc.c
@@ -53,6 +53,12 @@
* cwikla@wri.com
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
#include <X11/Xlib.h>
#include <stdlib.h>
diff --git a/gdk/gdkcolor.c b/gdk/gdkcolor.c
index 065d3f126..3a274a888 100644
--- a/gdk/gdkcolor.c
+++ b/gdk/gdkcolor.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <time.h>
#include <X11/Xlib.h>
#include "gdk.h"
diff --git a/gdk/gdkcursor.c b/gdk/gdkcursor.c
index 185419374..568c489dd 100644
--- a/gdk/gdkcursor.c
+++ b/gdk/gdkcursor.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/cursorfont.h>
#include "gdk.h"
diff --git a/gdk/gdkdnd.c b/gdk/gdkdnd.c
index 55bd8b9ab..3b8f05d8f 100644
--- a/gdk/gdkdnd.c
+++ b/gdk/gdkdnd.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <string.h>
diff --git a/gdk/gdkdraw.c b/gdk/gdkdraw.c
index 2d61d5dc4..cb4f96e78 100644
--- a/gdk/gdkdraw.c
+++ b/gdk/gdkdraw.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xos.h>
#include "gdk.h"
diff --git a/gdk/gdkevents.c b/gdk/gdkevents.c
index ab67c956b..159e0ee9e 100644
--- a/gdk/gdkevents.c
+++ b/gdk/gdkevents.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "gdk.h"
#include "gdkx.h"
#include "gdkprivate.h"
diff --git a/gdk/gdkfont.c b/gdk/gdkfont.c
index 617a4d249..91e728c59 100644
--- a/gdk/gdkfont.c
+++ b/gdk/gdkfont.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xos.h>
#include "gdk.h"
diff --git a/gdk/gdkgc.c b/gdk/gdkgc.c
index 730ec63ad..470c35867 100644
--- a/gdk/gdkgc.c
+++ b/gdk/gdkgc.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <string.h>
#include <X11/Xlib.h>
#include "gdk.h"
diff --git a/gdk/gdkglobals.c b/gdk/gdkglobals.c
index eabd107db..7a9307b2a 100644
--- a/gdk/gdkglobals.c
+++ b/gdk/gdkglobals.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <stdio.h>
#include <X11/Xlib.h>
#include "gdktypes.h"
diff --git a/gdk/gdki18n.h b/gdk/gdki18n.h
index c7dba9e70..c5d85f99d 100644
--- a/gdk/gdki18n.h
+++ b/gdk/gdki18n.h
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GDK_I18N_H__
#define __GDK_I18N_H__
diff --git a/gdk/gdkim.c b/gdk/gdkim.c
index 31d72e3cd..c06afc057 100644
--- a/gdk/gdkim.c
+++ b/gdk/gdkim.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlocale.h>
#include "gdk.h"
#include "gdkprivate.h"
diff --git a/gdk/gdkimage.c b/gdk/gdkimage.c
index 3c5cfe9b0..f2f26d95a 100644
--- a/gdk/gdkimage.c
+++ b/gdk/gdkimage.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <config.h>
/* gcc -ansi -pedantic on GNU/Linux causes warnings and errors
diff --git a/gdk/gdkinput.c b/gdk/gdkinput.c
index a11da09f2..b09821ff6 100644
--- a/gdk/gdkinput.c
+++ b/gdk/gdkinput.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <stdlib.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
diff --git a/gdk/gdkinput.h b/gdk/gdkinput.h
index 54224c195..a0fd16dc3 100644
--- a/gdk/gdkinput.h
+++ b/gdk/gdkinput.h
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GDK_INPUT_H__
#define __GDK_INPUT_H__
diff --git a/gdk/gdkinputcommon.h b/gdk/gdkinputcommon.h
index e5394a37f..edfc4ebd8 100644
--- a/gdk/gdkinputcommon.h
+++ b/gdk/gdkinputcommon.h
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#if defined(XINPUT_GXI) || defined(XINPUT_XFREE)
/* Forward declarations */
diff --git a/gdk/gdkinputgxi.h b/gdk/gdkinputgxi.h
index d9d351c92..773a0436b 100644
--- a/gdk/gdkinputgxi.h
+++ b/gdk/gdkinputgxi.h
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifdef XINPUT_GXI
/* #define DEBUG_SWITCHING */
diff --git a/gdk/gdkinputnone.h b/gdk/gdkinputnone.h
index 87b8ea499..7695726bf 100644
--- a/gdk/gdkinputnone.h
+++ b/gdk/gdkinputnone.h
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifdef XINPUT_NONE
static void gdk_input_none_get_pointer (GdkWindow *window,
diff --git a/gdk/gdkinputxfree.h b/gdk/gdkinputxfree.h
index 7b69d6197..d4020ae16 100644
--- a/gdk/gdkinputxfree.h
+++ b/gdk/gdkinputxfree.h
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifdef XINPUT_XFREE
/* forward declarations */
diff --git a/gdk/gdkpixmap.c b/gdk/gdkpixmap.c
index 8df3145d7..22e5a0786 100644
--- a/gdk/gdkpixmap.c
+++ b/gdk/gdkpixmap.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
diff --git a/gdk/gdkprivate.h b/gdk/gdkprivate.h
index 00232970b..4f12915c1 100644
--- a/gdk/gdkprivate.h
+++ b/gdk/gdkprivate.h
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GDK_PRIVATE_H__
#define __GDK_PRIVATE_H__
diff --git a/gdk/gdkproperty.c b/gdk/gdkproperty.c
index 12f0420dd..566335246 100644
--- a/gdk/gdkproperty.c
+++ b/gdk/gdkproperty.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <string.h>
diff --git a/gdk/gdkrectangle.c b/gdk/gdkrectangle.c
index 04017a99e..8fd435aa9 100644
--- a/gdk/gdkrectangle.c
+++ b/gdk/gdkrectangle.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "gdk.h"
diff --git a/gdk/gdkregion.c b/gdk/gdkregion.c
index 19b921d03..d09f38865 100644
--- a/gdk/gdkregion.c
+++ b/gdk/gdkregion.c
@@ -16,7 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
-
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include "gdk.h"
diff --git a/gdk/gdkrgb.c b/gdk/gdkrgb.c
index 51c14399a..f66d1ff87 100644
--- a/gdk/gdkrgb.c
+++ b/gdk/gdkrgb.c
@@ -22,6 +22,13 @@
Raph Levien <raph@acm.org>
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <math.h>
#if HAVE_CONFIG_H
diff --git a/gdk/gdkrgb.h b/gdk/gdkrgb.h
index ee6f74ad4..f3e47939e 100644
--- a/gdk/gdkrgb.h
+++ b/gdk/gdkrgb.h
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GDK_RGB_H__
#define __GDK_RGB_H__
diff --git a/gdk/gdkselection.c b/gdk/gdkselection.c
index fb89a3d85..64a18d042 100644
--- a/gdk/gdkselection.c
+++ b/gdk/gdkselection.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <string.h>
diff --git a/gdk/gdktypes.h b/gdk/gdktypes.h
index ea9fc102c..16400bcee 100644
--- a/gdk/gdktypes.h
+++ b/gdk/gdktypes.h
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GDK_TYPES_H__
#define __GDK_TYPES_H__
diff --git a/gdk/gdkvisual.c b/gdk/gdkvisual.c
index ebdcccb12..a63ba55c6 100644
--- a/gdk/gdkvisual.c
+++ b/gdk/gdkvisual.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include "gdk.h"
diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c
index 65eaa7797..2539e9aa2 100644
--- a/gdk/gdkwindow.c
+++ b/gdk/gdkwindow.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
diff --git a/gdk/gdkx.h b/gdk/gdkx.h
index 306f03d09..995c9dca9 100644
--- a/gdk/gdkx.h
+++ b/gdk/gdkx.h
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GDK_X_H__
#define __GDK_X_H__
diff --git a/gdk/gdkxid.c b/gdk/gdkxid.c
index b594ad83d..706738673 100644
--- a/gdk/gdkxid.c
+++ b/gdk/gdkxid.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "gdkprivate.h"
#include <stdio.h>
diff --git a/gdk/x11/gdkcc-x11.c b/gdk/x11/gdkcc-x11.c
index df7c0a783..573b2efa1 100644
--- a/gdk/x11/gdkcc-x11.c
+++ b/gdk/x11/gdkcc-x11.c
@@ -53,6 +53,12 @@
* cwikla@wri.com
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
#include <X11/Xlib.h>
#include <stdlib.h>
diff --git a/gdk/x11/gdkcolor-x11.c b/gdk/x11/gdkcolor-x11.c
index 065d3f126..3a274a888 100644
--- a/gdk/x11/gdkcolor-x11.c
+++ b/gdk/x11/gdkcolor-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <time.h>
#include <X11/Xlib.h>
#include "gdk.h"
diff --git a/gdk/x11/gdkcursor-x11.c b/gdk/x11/gdkcursor-x11.c
index 185419374..568c489dd 100644
--- a/gdk/x11/gdkcursor-x11.c
+++ b/gdk/x11/gdkcursor-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/cursorfont.h>
#include "gdk.h"
diff --git a/gdk/x11/gdkdnd-x11.c b/gdk/x11/gdkdnd-x11.c
index 55bd8b9ab..3b8f05d8f 100644
--- a/gdk/x11/gdkdnd-x11.c
+++ b/gdk/x11/gdkdnd-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <string.h>
diff --git a/gdk/x11/gdkevents-x11.c b/gdk/x11/gdkevents-x11.c
index ab67c956b..159e0ee9e 100644
--- a/gdk/x11/gdkevents-x11.c
+++ b/gdk/x11/gdkevents-x11.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "gdk.h"
#include "gdkx.h"
#include "gdkprivate.h"
diff --git a/gdk/x11/gdkfont-x11.c b/gdk/x11/gdkfont-x11.c
index 617a4d249..91e728c59 100644
--- a/gdk/x11/gdkfont-x11.c
+++ b/gdk/x11/gdkfont-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xos.h>
#include "gdk.h"
diff --git a/gdk/x11/gdkglobals-x11.c b/gdk/x11/gdkglobals-x11.c
index eabd107db..7a9307b2a 100644
--- a/gdk/x11/gdkglobals-x11.c
+++ b/gdk/x11/gdkglobals-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <stdio.h>
#include <X11/Xlib.h>
#include "gdktypes.h"
diff --git a/gdk/x11/gdkim-x11.c b/gdk/x11/gdkim-x11.c
index 31d72e3cd..c06afc057 100644
--- a/gdk/x11/gdkim-x11.c
+++ b/gdk/x11/gdkim-x11.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlocale.h>
#include "gdk.h"
#include "gdkprivate.h"
diff --git a/gdk/x11/gdkimage-x11.c b/gdk/x11/gdkimage-x11.c
index 3c5cfe9b0..f2f26d95a 100644
--- a/gdk/x11/gdkimage-x11.c
+++ b/gdk/x11/gdkimage-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <config.h>
/* gcc -ansi -pedantic on GNU/Linux causes warnings and errors
diff --git a/gdk/x11/gdkinput-gxi.c b/gdk/x11/gdkinput-gxi.c
index d9d351c92..773a0436b 100644
--- a/gdk/x11/gdkinput-gxi.c
+++ b/gdk/x11/gdkinput-gxi.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifdef XINPUT_GXI
/* #define DEBUG_SWITCHING */
diff --git a/gdk/x11/gdkinput-none.c b/gdk/x11/gdkinput-none.c
index 87b8ea499..7695726bf 100644
--- a/gdk/x11/gdkinput-none.c
+++ b/gdk/x11/gdkinput-none.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifdef XINPUT_NONE
static void gdk_input_none_get_pointer (GdkWindow *window,
diff --git a/gdk/x11/gdkinput-x11.c b/gdk/x11/gdkinput-x11.c
index e5394a37f..edfc4ebd8 100644
--- a/gdk/x11/gdkinput-x11.c
+++ b/gdk/x11/gdkinput-x11.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#if defined(XINPUT_GXI) || defined(XINPUT_XFREE)
/* Forward declarations */
diff --git a/gdk/x11/gdkinput-xfree.c b/gdk/x11/gdkinput-xfree.c
index 7b69d6197..d4020ae16 100644
--- a/gdk/x11/gdkinput-xfree.c
+++ b/gdk/x11/gdkinput-xfree.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifdef XINPUT_XFREE
/* forward declarations */
diff --git a/gdk/x11/gdkinput.c b/gdk/x11/gdkinput.c
index a11da09f2..b09821ff6 100644
--- a/gdk/x11/gdkinput.c
+++ b/gdk/x11/gdkinput.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <stdlib.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
diff --git a/gdk/x11/gdkmain-x11.c b/gdk/x11/gdkmain-x11.c
index f10a89830..afcc3dd25 100644
--- a/gdk/x11/gdkmain-x11.c
+++ b/gdk/x11/gdkmain-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "config.h"
#include <ctype.h>
diff --git a/gdk/x11/gdkpixmap-x11.c b/gdk/x11/gdkpixmap-x11.c
index 8df3145d7..22e5a0786 100644
--- a/gdk/x11/gdkpixmap-x11.c
+++ b/gdk/x11/gdkpixmap-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
diff --git a/gdk/x11/gdkproperty-x11.c b/gdk/x11/gdkproperty-x11.c
index 12f0420dd..566335246 100644
--- a/gdk/x11/gdkproperty-x11.c
+++ b/gdk/x11/gdkproperty-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <string.h>
diff --git a/gdk/x11/gdkregion-x11.c b/gdk/x11/gdkregion-x11.c
index 19b921d03..d09f38865 100644
--- a/gdk/x11/gdkregion-x11.c
+++ b/gdk/x11/gdkregion-x11.c
@@ -16,7 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
-
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include "gdk.h"
diff --git a/gdk/x11/gdkselection-x11.c b/gdk/x11/gdkselection-x11.c
index fb89a3d85..64a18d042 100644
--- a/gdk/x11/gdkselection-x11.c
+++ b/gdk/x11/gdkselection-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <string.h>
diff --git a/gdk/x11/gdkvisual-x11.c b/gdk/x11/gdkvisual-x11.c
index ebdcccb12..a63ba55c6 100644
--- a/gdk/x11/gdkvisual-x11.c
+++ b/gdk/x11/gdkvisual-x11.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include "gdk.h"
diff --git a/gdk/x11/gdkwindow-x11.c b/gdk/x11/gdkwindow-x11.c
index 65eaa7797..2539e9aa2 100644
--- a/gdk/x11/gdkwindow-x11.c
+++ b/gdk/x11/gdkwindow-x11.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
diff --git a/gdk/x11/gdkx.h b/gdk/x11/gdkx.h
index 306f03d09..995c9dca9 100644
--- a/gdk/x11/gdkx.h
+++ b/gdk/x11/gdkx.h
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GDK_X_H__
#define __GDK_X_H__
diff --git a/gdk/x11/gdkxid.c b/gdk/x11/gdkxid.c
index b594ad83d..706738673 100644
--- a/gdk/x11/gdkxid.c
+++ b/gdk/x11/gdkxid.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include "gdkprivate.h"
#include <stdio.h>