summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/CubeMain.cxx6
-rw-r--r--test/CubeView.cxx8
-rw-r--r--test/CubeView.h6
-rw-r--r--test/Makefile6
-rw-r--r--test/adjuster.cxx6
-rwxr-xr-xtest/arc.cxx6
-rw-r--r--test/ask.cxx6
-rw-r--r--test/bitmap.cxx6
-rw-r--r--test/boxtype.cxx6
-rw-r--r--test/browser.cxx6
-rw-r--r--test/browserop.cxx6
-rw-r--r--test/button.cxx6
-rw-r--r--test/buttons.cxx6
-rw-r--r--test/checkers.cxx6
-rw-r--r--test/clock.cxx6
-rw-r--r--test/colbrowser.cxx6
-rw-r--r--test/color_chooser.cxx6
-rw-r--r--test/connect.cxx6
-rw-r--r--test/cube.cxx6
-rw-r--r--test/cursor.cxx6
-rw-r--r--test/curve.cxx6
-rw-r--r--test/demo.cxx6
-rw-r--r--test/doublebuffer.cxx6
-rw-r--r--test/editor.cxx6
-rw-r--r--test/file_chooser.cxx6
-rw-r--r--test/fl_jpeg_image.cxx6
-rw-r--r--test/fonts.cxx6
-rw-r--r--test/forms.cxx6
-rw-r--r--test/fractals.cxx6
-rw-r--r--test/fullscreen.cxx6
-rw-r--r--test/gl_overlay.cxx6
-rw-r--r--test/glpuzzle.cxx6
-rw-r--r--test/hello.cxx6
-rw-r--r--test/help.cxx6
-rw-r--r--test/iconize.cxx6
-rw-r--r--test/image.cxx6
-rw-r--r--test/input.cxx6
-rw-r--r--test/jpeg_image.cxx6
-rw-r--r--test/keyboard.cxx6
-rw-r--r--test/keyboard.h6
-rw-r--r--test/label.cxx6
-rw-r--r--test/line_style.cxx29
-rw-r--r--test/list_visuals.cxx6
-rw-r--r--test/mandelbrot.cxx6
-rw-r--r--test/mandelbrot.h6
-rw-r--r--test/menubar.cxx6
-rw-r--r--test/message.cxx6
-rw-r--r--test/minimum.cxx6
-rw-r--r--test/navigation.cxx6
-rw-r--r--test/output.cxx6
-rw-r--r--test/overlay.cxx6
-rw-r--r--test/pack.cxx6
-rw-r--r--test/pixmap.cxx6
-rw-r--r--test/pixmap_browser.cxx6
-rw-r--r--test/resizebox.cxx6
-rw-r--r--test/scroll.cxx6
-rw-r--r--test/shape.cxx6
-rw-r--r--test/shiny.cxx6
-rw-r--r--test/subwindow.cxx6
-rw-r--r--test/symbols.cxx6
-rw-r--r--test/threads.cxx6
-rw-r--r--test/threads.h6
-rwxr-xr-xtest/tile.cxx6
-rw-r--r--test/tiled_image.cxx6
64 files changed, 219 insertions, 190 deletions
diff --git a/test/CubeMain.cxx b/test/CubeMain.cxx
index 010a4008c..8991db63b 100644
--- a/test/CubeMain.cxx
+++ b/test/CubeMain.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: CubeMain.cxx,v 1.2.2.5.2.1 2001/12/23 03:40:51 easysw Exp $"
+// "$Id: CubeMain.cxx,v 1.2.2.5.2.2 2002/01/01 15:11:32 easysw Exp $"
//
// CubeView class definitions for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -43,5 +43,5 @@ main(int argc, char **argv) {
//
-// End of "$Id: CubeMain.cxx,v 1.2.2.5.2.1 2001/12/23 03:40:51 easysw Exp $".
+// End of "$Id: CubeMain.cxx,v 1.2.2.5.2.2 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/CubeView.cxx b/test/CubeView.cxx
index 6dbb3ae81..3fb8df5e5 100644
--- a/test/CubeView.cxx
+++ b/test/CubeView.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: CubeView.cxx,v 1.4.2.4.2.2 2001/12/21 14:35:33 easysw Exp $"
+// "$Id: CubeView.cxx,v 1.4.2.4.2.3 2002/01/01 15:11:32 easysw Exp $"
//
// CubeView class implementation for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -147,7 +147,7 @@ void CubeView::draw() {
if (!valid()) {
glLoadIdentity();
glViewport(0,0,w(),h());
- glOrtho(-10,10,-10,10,-20010,10000);
+ glOrtho(-10,10,-10,10,-20020,10000);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
}
@@ -167,5 +167,5 @@ void CubeView::draw() {
#endif /* HAVE_GL */
//
-// End of "$Id: CubeView.cxx,v 1.4.2.4.2.2 2001/12/21 14:35:33 easysw Exp $".
+// End of "$Id: CubeView.cxx,v 1.4.2.4.2.3 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/CubeView.h b/test/CubeView.h
index a022eb6a1..1682d87d0 100644
--- a/test/CubeView.h
+++ b/test/CubeView.h
@@ -1,9 +1,9 @@
//
-// "$Id: CubeView.h,v 1.4.2.4 2001/04/30 17:17:01 easysw Exp $"
+// "$Id: CubeView.h,v 1.4.2.4.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// CubeView class definitions for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -118,5 +118,5 @@ private:
#endif
//
-// End of "$Id: CubeView.h,v 1.4.2.4 2001/04/30 17:17:01 easysw Exp $".
+// End of "$Id: CubeView.h,v 1.4.2.4.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/Makefile b/test/Makefile
index 3df5bdcab..035f03597 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,9 +1,9 @@
#
-# "$Id: Makefile,v 1.19.2.7.2.25 2002/01/01 13:11:29 easysw Exp $"
+# "$Id: Makefile,v 1.19.2.7.2.26 2002/01/01 15:11:32 easysw Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
-# Copyright 1998-2001 by Bill Spitzak and others.
+# Copyright 1998-2002 by Bill Spitzak and others.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
@@ -261,5 +261,5 @@ uninstall:
@echo Nothing to uninstall in test directory.
#
-# End of "$Id: Makefile,v 1.19.2.7.2.25 2002/01/01 13:11:29 easysw Exp $".
+# End of "$Id: Makefile,v 1.19.2.7.2.26 2002/01/01 15:11:32 easysw Exp $".
#
diff --git a/test/adjuster.cxx b/test/adjuster.cxx
index a3f259bca..6fa5325b0 100644
--- a/test/adjuster.cxx
+++ b/test/adjuster.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: adjuster.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: adjuster.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Adjuster test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -60,5 +60,5 @@ int main(int, char ** argv) {
}
//
-// End of "$Id: adjuster.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: adjuster.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/arc.cxx b/test/arc.cxx
index bafb7a8ef..e857fc0c8 100755
--- a/test/arc.cxx
+++ b/test/arc.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: arc.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: arc.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Arc drawing test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -92,6 +92,6 @@ int main(int argc, char** argv) {
//
-// End of "$Id: arc.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: arc.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/ask.cxx b/test/ask.cxx
index 8e33fe1f6..8de2c3c35 100644
--- a/test/ask.cxx
+++ b/test/ask.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: ask.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: ask.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Standard dialog test program for the Fast Light Tool Kit (FLTK).
//
@@ -10,7 +10,7 @@
// This also demonstrates how to trap attempts by the user to
// close the last window by overriding Fl::exit
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -110,5 +110,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: ask.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: ask.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/bitmap.cxx b/test/bitmap.cxx
index e2bdecf31..72dc8cfd0 100644
--- a/test/bitmap.cxx
+++ b/test/bitmap.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: bitmap.cxx,v 1.4.2.3.2.2 2001/11/19 01:06:45 easysw Exp $"
+// "$Id: bitmap.cxx,v 1.4.2.3.2.3 2002/01/01 15:11:32 easysw Exp $"
//
// Bitmap label test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -141,5 +141,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: bitmap.cxx,v 1.4.2.3.2.2 2001/11/19 01:06:45 easysw Exp $".
+// End of "$Id: bitmap.cxx,v 1.4.2.3.2.3 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/boxtype.cxx b/test/boxtype.cxx
index 2f11e3776..703c154a0 100644
--- a/test/boxtype.cxx
+++ b/test/boxtype.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: boxtype.cxx,v 1.4.2.3.2.1 2001/11/28 21:37:35 easysw Exp $"
+// "$Id: boxtype.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:32 easysw Exp $"
//
// Boxtype test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -93,5 +93,5 @@ int main(int argc, char ** argv) {
}
//
-// End of "$Id: boxtype.cxx,v 1.4.2.3.2.1 2001/11/28 21:37:35 easysw Exp $".
+// End of "$Id: boxtype.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/browser.cxx b/test/browser.cxx
index b1e8589f0..8d7da3d7b 100644
--- a/test/browser.cxx
+++ b/test/browser.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: browser.cxx,v 1.5.2.6.2.3 2001/12/21 14:35:33 easysw Exp $"
+// "$Id: browser.cxx,v 1.5.2.6.2.4 2002/01/01 15:11:32 easysw Exp $"
//
// Browser test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -157,6 +157,6 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: browser.cxx,v 1.5.2.6.2.3 2001/12/21 14:35:33 easysw Exp $".
+// End of "$Id: browser.cxx,v 1.5.2.6.2.4 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/browserop.cxx b/test/browserop.cxx
index 9f59434a6..407195352 100644
--- a/test/browserop.cxx
+++ b/test/browserop.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: browserop.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: browserop.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Browser operation test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -104,5 +104,5 @@ main(int argc, char *argv[])
}
//
-// End of "$Id: browserop.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: browserop.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/button.cxx b/test/button.cxx
index e1b7ce226..60f25eced 100644
--- a/test/button.cxx
+++ b/test/button.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: button.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: button.cxx,v 1.4.2.4.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Button/callback test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -62,5 +62,5 @@ int main(int argc, char ** argv) {
}
//
-// End of "$Id: button.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: button.cxx,v 1.4.2.4.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/buttons.cxx b/test/buttons.cxx
index 30bb19149..fefd7e601 100644
--- a/test/buttons.cxx
+++ b/test/buttons.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: buttons.cxx,v 1.4.2.3.2.1 2001/08/01 21:24:49 easysw Exp $"
+// "$Id: buttons.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:32 easysw Exp $"
//
// Another button test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -49,5 +49,5 @@ int main(int argc, char ** argv) {
}
//
-// End of "$Id: buttons.cxx,v 1.4.2.3.2.1 2001/08/01 21:24:49 easysw Exp $".
+// End of "$Id: buttons.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/checkers.cxx b/test/checkers.cxx
index 21a9a7f74..0aba83082 100644
--- a/test/checkers.cxx
+++ b/test/checkers.cxx
@@ -1,12 +1,12 @@
//
-// "$Id: checkers.cxx,v 1.9.2.7 2001/04/13 19:07:40 easysw Exp $"
+// "$Id: checkers.cxx,v 1.9.2.7.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Checkers game for the Fast Light Tool Kit (FLTK).
//
// Hours of fun: the FLTK checkers game!
// Based on a very old algorithim, but it still works!
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -1365,5 +1365,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: checkers.cxx,v 1.9.2.7 2001/04/13 19:07:40 easysw Exp $".
+// End of "$Id: checkers.cxx,v 1.9.2.7.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/clock.cxx b/test/clock.cxx
index 8b68ea3e2..257ebdce7 100644
--- a/test/clock.cxx
+++ b/test/clock.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: clock.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: clock.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Clock test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -47,5 +47,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: clock.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: clock.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/colbrowser.cxx b/test/colbrowser.cxx
index a2c990ffe..7d7facab9 100644
--- a/test/colbrowser.cxx
+++ b/test/colbrowser.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: colbrowser.cxx,v 1.5.2.5 2001/04/24 19:43:18 easysw Exp $"
+// "$Id: colbrowser.cxx,v 1.5.2.5.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Forms test program for the Fast Light Tool Kit (FLTK).
//
@@ -8,7 +8,7 @@
// using fltk's Forms emulation. Search for "fltk" to find all the
// changes
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -341,5 +341,5 @@ create_form_cl(void)
}
//
-// End of "$Id: colbrowser.cxx,v 1.5.2.5 2001/04/24 19:43:18 easysw Exp $".
+// End of "$Id: colbrowser.cxx,v 1.5.2.5.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/color_chooser.cxx b/test/color_chooser.cxx
index 4e87a68c8..c71d96e53 100644
--- a/test/color_chooser.cxx
+++ b/test/color_chooser.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: color_chooser.cxx,v 1.6.2.3.2.2 2001/11/27 17:44:08 easysw Exp $"
+// "$Id: color_chooser.cxx,v 1.6.2.3.2.3 2002/01/01 15:11:32 easysw Exp $"
//
// Color chooser test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -146,5 +146,5 @@ int main(int argc, char ** argv) {
}
//
-// End of "$Id: color_chooser.cxx,v 1.6.2.3.2.2 2001/11/27 17:44:08 easysw Exp $".
+// End of "$Id: color_chooser.cxx,v 1.6.2.3.2.3 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/connect.cxx b/test/connect.cxx
index 37f30c1a3..b8e287dfd 100644
--- a/test/connect.cxx
+++ b/test/connect.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: connect.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: connect.cxx,v 1.4.2.4.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// PPP example program for the Fast Light Tool Kit (FLTK).
//
@@ -7,7 +7,7 @@
// You must chmod +s /usr/sbin/pppd, and put all the options
// into /etc/ppp/options.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -71,5 +71,5 @@ int main(int argc, char ** argv) {
}
//
-// End of "$Id: connect.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: connect.cxx,v 1.4.2.4.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/cube.cxx b/test/cube.cxx
index 58d9d7579..35ff8cafe 100644
--- a/test/cube.cxx
+++ b/test/cube.cxx
@@ -1,11 +1,11 @@
//
-// "$Id: cube.cxx,v 1.4.2.5 2001/03/14 17:20:02 spitzak Exp $"
+// "$Id: cube.cxx,v 1.4.2.5.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Another forms test program for the Fast Light Tool Kit (FLTK).
//
// Modified to have 2 cubes to test multiple OpenGL contexts
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -179,5 +179,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: cube.cxx,v 1.4.2.5 2001/03/14 17:20:02 spitzak Exp $".
+// End of "$Id: cube.cxx,v 1.4.2.5.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/cursor.cxx b/test/cursor.cxx
index 349d3f39b..91e88111a 100644
--- a/test/cursor.cxx
+++ b/test/cursor.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: cursor.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: cursor.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Cursor test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -159,5 +159,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: cursor.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: cursor.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/curve.cxx b/test/curve.cxx
index 6a177106a..dc701a765 100644
--- a/test/curve.cxx
+++ b/test/curve.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: curve.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: curve.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $"
//
// Curve test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -109,5 +109,5 @@ int main(int argc, char** argv) {
}
//
-// End of "$Id: curve.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: curve.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/demo.cxx b/test/demo.cxx
index c3c13cbbd..c3fba4945 100644
--- a/test/demo.cxx
+++ b/test/demo.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: demo.cxx,v 1.8.2.5.2.4 2001/12/21 14:35:33 easysw Exp $"
+// "$Id: demo.cxx,v 1.8.2.5.2.5 2002/01/01 15:11:32 easysw Exp $"
//
// Main demo program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -340,6 +340,6 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: demo.cxx,v 1.8.2.5.2.4 2001/12/21 14:35:33 easysw Exp $".
+// End of "$Id: demo.cxx,v 1.8.2.5.2.5 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/doublebuffer.cxx b/test/doublebuffer.cxx
index f2aec4e66..0c832e537 100644
--- a/test/doublebuffer.cxx
+++ b/test/doublebuffer.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: doublebuffer.cxx,v 1.4.2.3.2.1 2001/12/23 03:40:51 easysw Exp $"
+// "$Id: doublebuffer.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:32 easysw Exp $"
//
// Double-buffering test program for the Fast Light Tool Kit (FLTK).
//
@@ -13,7 +13,7 @@
// This demo should work for both the GL and X versions of Fl,
// even though the double buffering mechanism is totally different.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -122,5 +122,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: doublebuffer.cxx,v 1.4.2.3.2.1 2001/12/23 03:40:51 easysw Exp $".
+// End of "$Id: doublebuffer.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/editor.cxx b/test/editor.cxx
index 31a732653..5319471cb 100644
--- a/test/editor.cxx
+++ b/test/editor.cxx
@@ -1,11 +1,11 @@
//
-// "$Id: editor.cxx,v 1.2.2.3.2.6 2001/12/12 21:33:34 easysw Exp $"
+// "$Id: editor.cxx,v 1.2.2.3.2.7 2002/01/01 15:11:32 easysw Exp $"
//
// A simple text editor program for the Fast Light Tool Kit (FLTK).
//
// This program is described in Chapter 4 of the FLTK Programmer's Guide.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -419,5 +419,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: editor.cxx,v 1.2.2.3.2.6 2001/12/12 21:33:34 easysw Exp $".
+// End of "$Id: editor.cxx,v 1.2.2.3.2.7 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/file_chooser.cxx b/test/file_chooser.cxx
index 886db8b1b..3637250b8 100644
--- a/test/file_chooser.cxx
+++ b/test/file_chooser.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: file_chooser.cxx,v 1.4.2.3.2.3 2001/09/30 17:37:06 easysw Exp $"
+// "$Id: file_chooser.cxx,v 1.4.2.3.2.4 2002/01/01 15:11:32 easysw Exp $"
//
// File chooser test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -56,5 +56,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: file_chooser.cxx,v 1.4.2.3.2.3 2001/09/30 17:37:06 easysw Exp $".
+// End of "$Id: file_chooser.cxx,v 1.4.2.3.2.4 2002/01/01 15:11:32 easysw Exp $".
//
diff --git a/test/fl_jpeg_image.cxx b/test/fl_jpeg_image.cxx
index 8ce011d84..4cbd60c15 100644
--- a/test/fl_jpeg_image.cxx
+++ b/test/fl_jpeg_image.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: fl_jpeg_image.cxx,v 1.5.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// fl_draw_image test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// The makefile assummes you decompressed and build these in a directory
// called "jpeg-6a" in the same location as the "FL" directory.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -197,5 +197,5 @@ void readtheimage(const char *name) {
#endif
//
-// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/fonts.cxx b/test/fonts.cxx
index dc4df657d..e42616762 100644
--- a/test/fonts.cxx
+++ b/test/fonts.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: fonts.cxx,v 1.5.2.3.2.1 2001/12/23 03:40:51 easysw Exp $"
+// "$Id: fonts.cxx,v 1.5.2.3.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Font demo program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -165,5 +165,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: fonts.cxx,v 1.5.2.3.2.1 2001/12/23 03:40:51 easysw Exp $".
+// End of "$Id: fonts.cxx,v 1.5.2.3.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/forms.cxx b/test/forms.cxx
index 10fecd943..d53d65955 100644
--- a/test/forms.cxx
+++ b/test/forms.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: forms.cxx,v 1.4.2.4.2.2 2001/12/21 14:35:34 easysw Exp $"
+// "$Id: forms.cxx,v 1.4.2.4.2.3 2002/01/01 15:11:33 easysw Exp $"
//
// Another forms demo for the Fast Light Tool Kit (FLTK).
//
@@ -9,7 +9,7 @@
// This demo show the different boxtypes. Note that some
// boxtypes are not appropriate for some objects
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -231,5 +231,5 @@ main (int argc, char *argv[])
}
//
-// End of "$Id: forms.cxx,v 1.4.2.4.2.2 2001/12/21 14:35:34 easysw Exp $".
+// End of "$Id: forms.cxx,v 1.4.2.4.2.3 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/fractals.cxx b/test/fractals.cxx
index 17c720545..9f99b91fc 100644
--- a/test/fractals.cxx
+++ b/test/fractals.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fractals.cxx,v 1.5.2.6.2.2 2001/12/06 00:17:47 matthiaswm Exp $"
+// "$Id: fractals.cxx,v 1.5.2.6.2.3 2002/01/01 15:11:33 easysw Exp $"
//
// Fractal drawing demo for the Fast Light Tool Kit (FLTK).
//
@@ -7,7 +7,7 @@
// demonstrate how to add fltk controls to a glut program. The glut
// code is unchanged except for the end (search for fltk to find changes).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -813,5 +813,5 @@ int main(int argc, char** argv)
#endif
//
-// End of "$Id: fractals.cxx,v 1.5.2.6.2.2 2001/12/06 00:17:47 matthiaswm Exp $".
+// End of "$Id: fractals.cxx,v 1.5.2.6.2.3 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/fullscreen.cxx b/test/fullscreen.cxx
index dfe3fd1ac..2a669359a 100644
--- a/test/fullscreen.cxx
+++ b/test/fullscreen.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fullscreen.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: fullscreen.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Fullscreen test program for the Fast Light Tool Kit (FLTK).
//
@@ -34,7 +34,7 @@
// can avoid this by making the Fl_Gl_Window a child of a normal
// window.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -240,5 +240,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: fullscreen.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: fullscreen.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/gl_overlay.cxx b/test/gl_overlay.cxx
index d8052fd73..6e9609dcd 100644
--- a/test/gl_overlay.cxx
+++ b/test/gl_overlay.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: gl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: gl_overlay.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// OpenGL overlay test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -151,5 +151,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: gl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: gl_overlay.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/glpuzzle.cxx b/test/glpuzzle.cxx
index 6a980b52d..b452478ea 100644
--- a/test/glpuzzle.cxx
+++ b/test/glpuzzle.cxx
@@ -1,12 +1,12 @@
//
-// "$Id: glpuzzle.cxx,v 1.8.2.5.2.1 2001/12/06 00:17:47 matthiaswm Exp $"
+// "$Id: glpuzzle.cxx,v 1.8.2.5.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// OpenGL puzzle demo for the Fast Light Tool Kit (FLTK).
//
// This is a GLUT demo program to demonstrate fltk's GLUT emulation.
// Search for "fltk" to find all the changes
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -1484,5 +1484,5 @@ main(int argc, char **argv)
#endif // added for fltk's distribution
//
-// End of "$Id: glpuzzle.cxx,v 1.8.2.5.2.1 2001/12/06 00:17:47 matthiaswm Exp $".
+// End of "$Id: glpuzzle.cxx,v 1.8.2.5.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/hello.cxx b/test/hello.cxx
index 0d0da3089..1189a2954 100644
--- a/test/hello.cxx
+++ b/test/hello.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: hello.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: hello.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Hello, World! program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -39,5 +39,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: hello.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: hello.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/help.cxx b/test/help.cxx
index e2f94a60f..96254f77b 100644
--- a/test/help.cxx
+++ b/test/help.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: help.cxx,v 1.1.2.3 2001/12/23 03:40:51 easysw Exp $"
+// "$Id: help.cxx,v 1.1.2.4 2002/01/01 15:11:33 easysw Exp $"
//
// Fl_Help_Dialog test program.
//
-// Copyright 1999-2001 by Easy Software Products.
+// Copyright 1999-2002 by Easy Software Products.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -63,5 +63,5 @@ main(int argc, // I - Number of command-line arguments
//
-// End of "$Id: help.cxx,v 1.1.2.3 2001/12/23 03:40:51 easysw Exp $".
+// End of "$Id: help.cxx,v 1.1.2.4 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/iconize.cxx b/test/iconize.cxx
index b6afbaded..149cb7128 100644
--- a/test/iconize.cxx
+++ b/test/iconize.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: iconize.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: iconize.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Iconize test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -77,5 +77,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: iconize.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: iconize.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/image.cxx b/test/image.cxx
index 1d49c584b..83dcb883a 100644
--- a/test/image.cxx
+++ b/test/image.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: image.cxx,v 1.6.2.3.2.6 2001/11/27 17:44:08 easysw Exp $"
+// "$Id: image.cxx,v 1.6.2.3.2.7 2002/01/01 15:11:33 easysw Exp $"
//
// Fl_Image test program for the Fast Light Tool Kit (FLTK).
//
@@ -7,7 +7,7 @@
// as an icon or postage stamp. Use fl_draw_image to go directly
// from an buffered image that changes often.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -155,5 +155,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: image.cxx,v 1.6.2.3.2.6 2001/11/27 17:44:08 easysw Exp $".
+// End of "$Id: image.cxx,v 1.6.2.3.2.7 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/input.cxx b/test/input.cxx
index 2a1e5255c..1b18ce145 100644
--- a/test/input.cxx
+++ b/test/input.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: input.cxx,v 1.5.2.4.2.1 2001/10/29 03:44:33 easysw Exp $"
+// "$Id: input.cxx,v 1.5.2.4.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Input field test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -118,5 +118,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: input.cxx,v 1.5.2.4.2.1 2001/10/29 03:44:33 easysw Exp $".
+// End of "$Id: input.cxx,v 1.5.2.4.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/jpeg_image.cxx b/test/jpeg_image.cxx
index e7458c1d7..aabf97563 100644
--- a/test/jpeg_image.cxx
+++ b/test/jpeg_image.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: jpeg_image.cxx,v 1.5.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// fl_draw_image test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// The makefile assummes you decompressed and build these in a directory
// called "jpeg-6a" in the same location as the "FL" directory.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -198,5 +198,5 @@ void readtheimage(const char *name) {
#endif
//
-// End of "$Id: jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: jpeg_image.cxx,v 1.5.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/keyboard.cxx b/test/keyboard.cxx
index 1f4cdb3a7..4cf7c76a7 100644
--- a/test/keyboard.cxx
+++ b/test/keyboard.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: keyboard.cxx,v 1.5.2.3.2.4 2001/12/30 05:16:10 easysw Exp $"
+// "$Id: keyboard.cxx,v 1.5.2.3.2.5 2002/01/01 15:11:33 easysw Exp $"
//
// Keyboard/event test program for the Fast Light Tool Kit (FLTK).
//
@@ -17,7 +17,7 @@
//
// On IRIX the backslash key does not work. A bug in XKeysymToKeycode?
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -139,5 +139,5 @@ int main(int argc, char** argv) {
}
//
-// End of "$Id: keyboard.cxx,v 1.5.2.3.2.4 2001/12/30 05:16:10 easysw Exp $".
+// End of "$Id: keyboard.cxx,v 1.5.2.3.2.5 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/keyboard.h b/test/keyboard.h
index 7281672e2..ec3aedbb1 100644
--- a/test/keyboard.h
+++ b/test/keyboard.h
@@ -1,9 +1,9 @@
//
-// "$Id: keyboard.h,v 1.1.2.1 2001/12/30 05:16:10 easysw Exp $"
+// "$Id: keyboard.h,v 1.1.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Keyboard/event test header for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -40,5 +40,5 @@ public:
//
-// End of "$Id: keyboard.h,v 1.1.2.1 2001/12/30 05:16:10 easysw Exp $".
+// End of "$Id: keyboard.h,v 1.1.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/label.cxx b/test/label.cxx
index c5931af84..b06431daf 100644
--- a/test/label.cxx
+++ b/test/label.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: label.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Label test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -156,5 +156,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: label.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/line_style.cxx b/test/line_style.cxx
index 28b87363a..da47a3438 100644
--- a/test/line_style.cxx
+++ b/test/line_style.cxx
@@ -1,3 +1,28 @@
+//
+// "$Id: line_style.cxx,v 1.1.2.2.2.1 2002/01/01 15:11:33 easysw Exp $"
+//
+// Line style demo for the Fast Light Tool Kit (FLTK).
+//
+// Copyright 2000-2002 by Bill Spitzak and others.
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Library General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Library General Public License for more details.
+//
+// You should have received a copy of the GNU Library General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+//
+// Please report all bugs and problems to "fltk-bugs@fltk.org".
+//
+
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Value_Slider.H>
@@ -121,3 +146,7 @@ int main(int argc, char **argv) {
return Fl::run();
}
+
+//
+// End of "$Id: line_style.cxx,v 1.1.2.2.2.1 2002/01/01 15:11:33 easysw Exp $".
+//
diff --git a/test/list_visuals.cxx b/test/list_visuals.cxx
index d00ee050a..c471887de 100644
--- a/test/list_visuals.cxx
+++ b/test/list_visuals.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: list_visuals.cxx,v 1.5.2.3.2.1 2001/11/27 17:44:08 easysw Exp $"
+// "$Id: list_visuals.cxx,v 1.5.2.3.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Visual list utility for the Fast Light Tool Kit (FLTK).
//
@@ -11,7 +11,7 @@
// This file may be #included in another program to make a function to
// call to list the visuals. Fl.H must be included first to indicate this.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -235,5 +235,5 @@ int main(int argc, char **argv) {
#endif
//
-// End of "$Id: list_visuals.cxx,v 1.5.2.3.2.1 2001/11/27 17:44:08 easysw Exp $".
+// End of "$Id: list_visuals.cxx,v 1.5.2.3.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/mandelbrot.cxx b/test/mandelbrot.cxx
index eea40845b..e0fb8ee4a 100644
--- a/test/mandelbrot.cxx
+++ b/test/mandelbrot.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: mandelbrot.cxx,v 1.8.2.4.2.1 2001/12/30 05:16:10 easysw Exp $"
+// "$Id: mandelbrot.cxx,v 1.8.2.4.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Mandelbrot set demo for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -197,5 +197,5 @@ void Drawing_Area::resize(int XX,int YY,int WW,int HH) {
}
//
-// End of "$Id: mandelbrot.cxx,v 1.8.2.4.2.1 2001/12/30 05:16:10 easysw Exp $".
+// End of "$Id: mandelbrot.cxx,v 1.8.2.4.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/mandelbrot.h b/test/mandelbrot.h
index cdd6f0a6d..f15dc0b63 100644
--- a/test/mandelbrot.h
+++ b/test/mandelbrot.h
@@ -1,9 +1,9 @@
//
-// "$Id: mandelbrot.h,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: mandelbrot.h,v 1.5.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Mandelbrot set header file for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -68,5 +68,5 @@ public:
};
//
-// End of "$Id: mandelbrot.h,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: mandelbrot.h,v 1.5.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/menubar.cxx b/test/menubar.cxx
index c2732c54e..89370b086 100644
--- a/test/menubar.cxx
+++ b/test/menubar.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: menubar.cxx,v 1.6.2.8.2.2 2001/11/28 13:46:34 easysw Exp $"
+// "$Id: menubar.cxx,v 1.6.2.8.2.3 2002/01/01 15:11:33 easysw Exp $"
//
// Menubar test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -202,5 +202,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: menubar.cxx,v 1.6.2.8.2.2 2001/11/28 13:46:34 easysw Exp $".
+// End of "$Id: menubar.cxx,v 1.6.2.8.2.3 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/message.cxx b/test/message.cxx
index 1b5564554..0afb5cb74 100644
--- a/test/message.cxx
+++ b/test/message.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: message.cxx,v 1.5.2.3.2.2 2001/12/23 03:40:51 easysw Exp $"
+// "$Id: message.cxx,v 1.5.2.3.2.3 2002/01/01 15:11:33 easysw Exp $"
//
// Message test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -55,5 +55,5 @@ int main(int, char **) {
}
//
-// End of "$Id: message.cxx,v 1.5.2.3.2.2 2001/12/23 03:40:51 easysw Exp $".
+// End of "$Id: message.cxx,v 1.5.2.3.2.3 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/minimum.cxx b/test/minimum.cxx
index 5075b34e7..abd72f3d1 100644
--- a/test/minimum.cxx
+++ b/test/minimum.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: minimum.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: minimum.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Minimal update test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// machine is, this is an insane waste of resources, and should be
// stopped!
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -74,5 +74,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: minimum.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: minimum.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/navigation.cxx b/test/navigation.cxx
index d39097313..9b987957a 100644
--- a/test/navigation.cxx
+++ b/test/navigation.cxx
@@ -1,12 +1,12 @@
//
-// "$Id: navigation.cxx,v 1.5.2.3.2.1 2001/12/23 03:40:51 easysw Exp $"
+// "$Id: navigation.cxx,v 1.5.2.3.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Navigation test program for the Fast Light Tool Kit (FLTK).
//
// Silly test of navigation keys. This is not a recommended method of
// laying out your panels!
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -66,5 +66,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: navigation.cxx,v 1.5.2.3.2.1 2001/12/23 03:40:51 easysw Exp $".
+// End of "$Id: navigation.cxx,v 1.5.2.3.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/output.cxx b/test/output.cxx
index 3b6566cc1..91bccfdd4 100644
--- a/test/output.cxx
+++ b/test/output.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: output.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: output.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Output test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -97,5 +97,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: output.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: output.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/overlay.cxx b/test/overlay.cxx
index 62414ea94..c62ddb690 100644
--- a/test/overlay.cxx
+++ b/test/overlay.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: overlay.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Overlay window test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -80,5 +80,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: overlay.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/pack.cxx b/test/pack.cxx
index 67f113e0e..ab7dfd971 100644
--- a/test/pack.cxx
+++ b/test/pack.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: pack.cxx,v 1.4.2.3.2.1 2001/09/04 13:13:29 easysw Exp $"
+// "$Id: pack.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Fl_Pack test program for the Fast Light Tool Kit (FLTK).
//
@@ -7,7 +7,7 @@
// Changing the type() of an Fl_Pack after it is displayed is not supported
// so I have to do a lot of resizing of things before that.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -114,5 +114,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: pack.cxx,v 1.4.2.3.2.1 2001/09/04 13:13:29 easysw Exp $".
+// End of "$Id: pack.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/pixmap.cxx b/test/pixmap.cxx
index 52698bd48..124652c57 100644
--- a/test/pixmap.cxx
+++ b/test/pixmap.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: pixmap.cxx,v 1.4.2.3.2.2 2001/11/19 01:06:45 easysw Exp $"
+// "$Id: pixmap.cxx,v 1.4.2.3.2.3 2002/01/01 15:11:33 easysw Exp $"
//
// Pixmap label test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -96,5 +96,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: pixmap.cxx,v 1.4.2.3.2.2 2001/11/19 01:06:45 easysw Exp $".
+// End of "$Id: pixmap.cxx,v 1.4.2.3.2.3 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/pixmap_browser.cxx b/test/pixmap_browser.cxx
index 3a9a53002..5b97643ad 100644
--- a/test/pixmap_browser.cxx
+++ b/test/pixmap_browser.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: pixmap_browser.cxx,v 1.5.2.4.2.3 2001/11/24 18:07:57 easysw Exp $"
+// "$Id: pixmap_browser.cxx,v 1.5.2.4.2.4 2002/01/01 15:11:33 easysw Exp $"
//
// A shared image test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -94,5 +94,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: pixmap_browser.cxx,v 1.5.2.4.2.3 2001/11/24 18:07:57 easysw Exp $".
+// End of "$Id: pixmap_browser.cxx,v 1.5.2.4.2.4 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/resizebox.cxx b/test/resizebox.cxx
index 921ac1cf1..a23510d14 100644
--- a/test/resizebox.cxx
+++ b/test/resizebox.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: resizebox.cxx,v 1.4.2.3.2.1 2001/08/06 15:19:20 easysw Exp $"
+// "$Id: resizebox.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Resize box test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -96,5 +96,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: resizebox.cxx,v 1.4.2.3.2.1 2001/08/06 15:19:20 easysw Exp $".
+// End of "$Id: resizebox.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/scroll.cxx b/test/scroll.cxx
index 0b4db8de4..49b137ff8 100644
--- a/test/scroll.cxx
+++ b/test/scroll.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: scroll.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: scroll.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Fl_Scroll test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -137,5 +137,5 @@ int main(int argc, char** argv) {
}
//
-// End of "$Id: scroll.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: scroll.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/shape.cxx b/test/shape.cxx
index ca321d2df..065705fda 100644
--- a/test/shape.cxx
+++ b/test/shape.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: shape.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: shape.cxx,v 1.5.2.4.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Tiny OpenGL demo program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -111,5 +111,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: shape.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: shape.cxx,v 1.5.2.4.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/shiny.cxx b/test/shiny.cxx
index fb4cb7218..a6442096b 100644
--- a/test/shiny.cxx
+++ b/test/shiny.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: shiny.cxx,v 1.5.2.3.2.1 2001/12/30 05:16:10 easysw Exp $"
+// "$Id: shiny.cxx,v 1.5.2.3.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// OpenGL "shiny buttons" test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -303,5 +303,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: shiny.cxx,v 1.5.2.3.2.1 2001/12/30 05:16:10 easysw Exp $".
+// End of "$Id: shiny.cxx,v 1.5.2.3.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/subwindow.cxx b/test/subwindow.cxx
index 385c2870d..b87008d89 100644
--- a/test/subwindow.cxx
+++ b/test/subwindow.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: subwindow.cxx,v 1.5.2.5.2.1 2001/12/23 03:40:51 easysw Exp $"
+// "$Id: subwindow.cxx,v 1.5.2.5.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Nested window test program for the Fast Light Tool Kit (FLTK).
//
@@ -8,7 +8,7 @@
// Buttons and pop-up menu should work, indicating that mouse positions
// are being correctly translated.
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -183,5 +183,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: subwindow.cxx,v 1.5.2.5.2.1 2001/12/23 03:40:51 easysw Exp $".
+// End of "$Id: subwindow.cxx,v 1.5.2.5.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/symbols.cxx b/test/symbols.cxx
index e71190ca8..45958d990 100644
--- a/test/symbols.cxx
+++ b/test/symbols.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: symbols.cxx,v 1.4.2.3.2.1 2001/10/27 16:38:36 easysw Exp $"
+// "$Id: symbols.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:33 easysw Exp $"
//
// Symbol test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -87,5 +87,5 @@ bt("@DnArrow");
}
//
-// End of "$Id: symbols.cxx,v 1.4.2.3.2.1 2001/10/27 16:38:36 easysw Exp $".
+// End of "$Id: symbols.cxx,v 1.4.2.3.2.2 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/threads.cxx b/test/threads.cxx
index 0574a6f6e..86090386e 100644
--- a/test/threads.cxx
+++ b/test/threads.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: threads.cxx,v 1.10.2.2 2001/12/23 03:40:51 easysw Exp $"
+// "$Id: threads.cxx,v 1.10.2.3 2002/01/01 15:11:33 easysw Exp $"
//
// Threading example program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -126,5 +126,5 @@ int main() {
//
-// End of "$Id: threads.cxx,v 1.10.2.2 2001/12/23 03:40:51 easysw Exp $".
+// End of "$Id: threads.cxx,v 1.10.2.3 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/threads.h b/test/threads.h
index 72d2fe144..460722a12 100644
--- a/test/threads.h
+++ b/test/threads.h
@@ -1,9 +1,9 @@
//
-// "$Id: threads.h,v 1.1.2.4 2001/12/17 14:52:27 easysw Exp $"
+// "$Id: threads.h,v 1.1.2.5 2002/01/01 15:11:33 easysw Exp $"
//
// Simple threading API for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -68,5 +68,5 @@ static int fl_create_thread(Fl_Thread& t, void *(*f) (void *), void* p) {
#endif // !Threads_h
//
-// End of "$Id: threads.h,v 1.1.2.4 2001/12/17 14:52:27 easysw Exp $".
+// End of "$Id: threads.h,v 1.1.2.5 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/tile.cxx b/test/tile.cxx
index 177ae6016..51f46c78a 100755
--- a/test/tile.cxx
+++ b/test/tile.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: tile.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
+// "$Id: tile.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $"
//
// Tile test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -86,5 +86,5 @@ int main(int argc, char** argv) {
}
//
-// End of "$Id: tile.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
+// End of "$Id: tile.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:33 easysw Exp $".
//
diff --git a/test/tiled_image.cxx b/test/tiled_image.cxx
index d62d84850..bb4a9dab3 100644
--- a/test/tiled_image.cxx
+++ b/test/tiled_image.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: tiled_image.cxx,v 1.1.2.4 2001/11/29 21:49:00 easysw Exp $"
+// "$Id: tiled_image.cxx,v 1.1.2.5 2002/01/01 15:11:33 easysw Exp $"
//
// Fl_Tiled_Image test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2001 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -100,5 +100,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: tiled_image.cxx,v 1.1.2.4 2001/11/29 21:49:00 easysw Exp $".
+// End of "$Id: tiled_image.cxx,v 1.1.2.5 2002/01/01 15:11:33 easysw Exp $".
//