From 0a36d9842029831c6f85761af0e26f43a4b7f754 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 7 Jan 1999 19:18:01 +0000 Subject: Yay, change all copyright notices to be 1998-1999. git-svn-id: file:///fltk/svn/fltk/trunk@201 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- test/Makefile | 30 +++++------------------------- test/adjuster.cxx | 6 +++--- test/arc.cxx | 6 +++--- test/ask.cxx | 6 +++--- test/bitmap.cxx | 6 +++--- test/boxtype.cxx | 6 +++--- test/browser.cxx | 6 +++--- test/browserop.cxx | 6 +++--- test/button.cxx | 6 +++--- test/buttons.cxx | 6 +++--- test/checkers.cxx | 6 +++--- test/clock.cxx | 6 +++--- test/colbrowser.cxx | 6 +++--- test/color_chooser.cxx | 6 +++--- test/connect.cxx | 6 +++--- test/cube.cxx | 6 +++--- test/cursor.cxx | 6 +++--- test/curve.cxx | 6 +++--- test/demo.cxx | 6 +++--- test/doublebuffer.cxx | 6 +++--- test/editor.cxx | 6 +++--- test/file_chooser.cxx | 6 +++--- test/fl_jpeg_image.cxx | 6 +++--- test/fonts.cxx | 6 +++--- test/forms.cxx | 6 +++--- test/fractals.cxx | 6 +++--- test/fullscreen.cxx | 6 +++--- test/gl_overlay.cxx | 6 +++--- test/glpuzzle.cxx | 6 +++--- test/hello.cxx | 6 +++--- test/iconize.cxx | 6 +++--- test/image.cxx | 6 +++--- test/input.cxx | 6 +++--- test/jpeg_image.cxx | 6 +++--- test/keyboard.cxx | 6 +++--- test/label.cxx | 6 +++--- test/list_visuals.cxx | 6 +++--- test/mandelbrot.cxx | 6 +++--- test/mandelbrot.h | 6 +++--- test/menubar.cxx | 6 +++--- test/message.cxx | 6 +++--- test/minimum.cxx | 6 +++--- test/navigation.cxx | 6 +++--- test/output.cxx | 6 +++--- test/overlay.cxx | 6 +++--- test/pack.cxx | 6 +++--- test/pixmap.cxx | 6 +++--- test/pixmap_browser.cxx | 6 +++--- test/resizebox.cxx | 6 +++--- test/scroll.cxx | 6 +++--- test/shape.cxx | 6 +++--- test/shiny.cxx | 6 +++--- test/subwindow.cxx | 6 +++--- test/symbols.cxx | 6 +++--- test/tile.cxx | 6 +++--- 55 files changed, 167 insertions(+), 187 deletions(-) (limited to 'test') diff --git a/test/Makefile b/test/Makefile index 8d48b308e..623e6e82a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,9 +1,9 @@ # -# "$Id: Makefile,v 1.14 1998/12/23 20:04:31 mike Exp $" +# "$Id: Makefile,v 1.15 1999/01/07 19:17:48 mike Exp $" # # Test/example program makefile for the Fast Light Tool Kit (FLTK). # -# Copyright 1998 by Bill Spitzak and others. +# Copyright 1998-1999 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 @@ -64,30 +64,10 @@ $(ALL): ../lib/$(LIBNAME) @../fluid/fluid -c $< @$(CXX) -I.. $(CXXFLAGS) $@.cxx -L../lib -lfltk $(LDLIBS) -o $@ -# Programs needing the OpenGL libraries: -cube: cube.cxx - @echo $@: - @$(CXX) -I.. $(CXXFLAGS) cube.cxx -L../lib -lfltk $(GLDLIBS) -o $@ -fullscreen: fullscreen.cxx - @echo $@: - @$(CXX) -I.. $(CXXFLAGS) fullscreen.cxx -L../lib -lfltk $(GLDLIBS) -o $@ -fractals: fractals.cxx - @echo $@: - @$(CXX) -I.. $(CXXFLAGS) fractals.cxx -L../lib -lfltk $(GLDLIBS) -o $@ -gl_overlay: gl_overlay.cxx - @echo $@: - @$(CXX) -I.. $(CXXFLAGS) gl_overlay.cxx -L../lib -lfltk $(GLDLIBS) -o $@ -glpuzzle: glpuzzle.cxx - @echo $@: - @$(CXX) -I.. $(CXXFLAGS) glpuzzle.cxx -L../lib -lfltk $(GLDLIBS) -o $@ -shape: shape.cxx - @echo $@: - @$(CXX) -I.. $(CXXFLAGS) shape.cxx -L../lib -lfltk $(GLDLIBS) -o $@ +# Other programs needing special "help"... shiny: shiny.cxx shiny_panel.cxx @echo $@: - @$(CXX) -I.. $(CXXFLAGS) shiny.cxx -L../lib -lfltk $(GLDLIBS) -o $@ - -# Other programs needing special "help"... + @$(CXX) -I.. $(CXXFLAGS) shiny.cxx -L../lib -lfltk $(LDLIBS) -o $@ keyboard: keyboard.cxx keyboard_ui.cxx @echo $@: @$(CXX) -I.. $(CXXFLAGS) keyboard.cxx -L../lib -lfltk $(LDLIBS) -o $@ @@ -111,5 +91,5 @@ install: @echo Nothing to install in test directory. # -# End of "$Id: Makefile,v 1.14 1998/12/23 20:04:31 mike Exp $". +# End of "$Id: Makefile,v 1.15 1999/01/07 19:17:48 mike Exp $". # diff --git a/test/adjuster.cxx b/test/adjuster.cxx index e61aef078..cdc16d1f5 100644 --- a/test/adjuster.cxx +++ b/test/adjuster.cxx @@ -1,9 +1,9 @@ // -// "$Id: adjuster.cxx,v 1.3 1998/10/21 14:21:12 mike Exp $" +// "$Id: adjuster.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $" // // Adjuster test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:12 mike Exp $". +// End of "$Id: adjuster.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $". // diff --git a/test/arc.cxx b/test/arc.cxx index 773530888..d909624ba 100755 --- a/test/arc.cxx +++ b/test/arc.cxx @@ -1,9 +1,9 @@ // -// "$Id: arc.cxx,v 1.3 1998/10/21 14:21:13 mike Exp $" +// "$Id: arc.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $" // // Arc drawing test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:13 mike Exp $". +// End of "$Id: arc.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $". // diff --git a/test/ask.cxx b/test/ask.cxx index d3b8f546d..fdd52dddf 100644 --- a/test/ask.cxx +++ b/test/ask.cxx @@ -1,5 +1,5 @@ // -// "$Id: ask.cxx,v 1.3 1998/10/21 14:21:14 mike Exp $" +// "$Id: ask.cxx,v 1.4 1999/01/07 19:17:48 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:14 mike Exp $". +// End of "$Id: ask.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $". // diff --git a/test/bitmap.cxx b/test/bitmap.cxx index d94f4e311..77cf8286c 100644 --- a/test/bitmap.cxx +++ b/test/bitmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: bitmap.cxx,v 1.3 1998/10/21 14:21:14 mike Exp $" +// "$Id: bitmap.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $" // // Bitmap label test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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: bitmap.cxx,v 1.3 1998/10/21 14:21:14 mike Exp $". +// End of "$Id: bitmap.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $". // diff --git a/test/boxtype.cxx b/test/boxtype.cxx index 9a72ca7c8..7332945c4 100644 --- a/test/boxtype.cxx +++ b/test/boxtype.cxx @@ -1,9 +1,9 @@ // -// "$Id: boxtype.cxx,v 1.3 1998/10/21 14:21:15 mike Exp $" +// "$Id: boxtype.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $" // // Boxtype test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -89,5 +89,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: boxtype.cxx,v 1.3 1998/10/21 14:21:15 mike Exp $". +// End of "$Id: boxtype.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $". // diff --git a/test/browser.cxx b/test/browser.cxx index d4171e178..12d3a4555 100644 --- a/test/browser.cxx +++ b/test/browser.cxx @@ -1,9 +1,9 @@ // -// "$Id: browser.cxx,v 1.4 1998/12/06 15:57:01 mike Exp $" +// "$Id: browser.cxx,v 1.5 1999/01/07 19:17:49 mike Exp $" // // Browser test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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,6 +94,6 @@ int main(int argc, char **argv) { } // -// End of "$Id: browser.cxx,v 1.4 1998/12/06 15:57:01 mike Exp $". +// End of "$Id: browser.cxx,v 1.5 1999/01/07 19:17:49 mike Exp $". // diff --git a/test/browserop.cxx b/test/browserop.cxx index 861ddf421..35bd8bd8d 100644 --- a/test/browserop.cxx +++ b/test/browserop.cxx @@ -1,9 +1,9 @@ // -// "$Id: browserop.cxx,v 1.3 1998/10/21 14:21:16 mike Exp $" +// "$Id: browserop.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $" // // Browser operation test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:16 mike Exp $". +// End of "$Id: browserop.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $". // diff --git a/test/button.cxx b/test/button.cxx index 1888c7c5d..23e266bc3 100644 --- a/test/button.cxx +++ b/test/button.cxx @@ -1,9 +1,9 @@ // -// "$Id: button.cxx,v 1.3 1998/10/21 14:21:17 mike Exp $" +// "$Id: button.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $" // // Button/callback test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -50,5 +50,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: button.cxx,v 1.3 1998/10/21 14:21:17 mike Exp $". +// End of "$Id: button.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $". // diff --git a/test/buttons.cxx b/test/buttons.cxx index 158102e7c..32ca6ef84 100644 --- a/test/buttons.cxx +++ b/test/buttons.cxx @@ -1,9 +1,9 @@ // -// "$Id: buttons.cxx,v 1.3 1998/10/21 14:21:17 mike Exp $" +// "$Id: buttons.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $" // // Another button test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -48,5 +48,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: buttons.cxx,v 1.3 1998/10/21 14:21:17 mike Exp $". +// End of "$Id: buttons.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $". // diff --git a/test/checkers.cxx b/test/checkers.cxx index 6ccffa84c..b0f86ac36 100644 --- a/test/checkers.cxx +++ b/test/checkers.cxx @@ -1,12 +1,12 @@ // -// "$Id: checkers.cxx,v 1.8 1998/12/08 21:04:39 mike Exp $" +// "$Id: checkers.cxx,v 1.9 1999/01/07 19:17:50 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -1366,5 +1366,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: checkers.cxx,v 1.8 1998/12/08 21:04:39 mike Exp $". +// End of "$Id: checkers.cxx,v 1.9 1999/01/07 19:17:50 mike Exp $". // diff --git a/test/clock.cxx b/test/clock.cxx index 71a140b74..cdb6d1d06 100644 --- a/test/clock.cxx +++ b/test/clock.cxx @@ -1,9 +1,9 @@ // -// "$Id: clock.cxx,v 1.3 1998/10/21 14:21:19 mike Exp $" +// "$Id: clock.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $" // // Clock test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:19 mike Exp $". +// End of "$Id: clock.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $". // diff --git a/test/colbrowser.cxx b/test/colbrowser.cxx index 9370297d1..3a8ea1724 100644 --- a/test/colbrowser.cxx +++ b/test/colbrowser.cxx @@ -1,5 +1,5 @@ // -// "$Id: colbrowser.cxx,v 1.4 1998/12/07 13:41:56 mike Exp $" +// "$Id: colbrowser.cxx,v 1.5 1999/01/07 19:17:51 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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,5 +340,5 @@ create_form_cl(void) } // -// End of "$Id: colbrowser.cxx,v 1.4 1998/12/07 13:41:56 mike Exp $". +// End of "$Id: colbrowser.cxx,v 1.5 1999/01/07 19:17:51 mike Exp $". // diff --git a/test/color_chooser.cxx b/test/color_chooser.cxx index 4ddf4cea3..886b24fa5 100644 --- a/test/color_chooser.cxx +++ b/test/color_chooser.cxx @@ -1,9 +1,9 @@ // -// "$Id: color_chooser.cxx,v 1.5 1998/12/06 15:46:13 mike Exp $" +// "$Id: color_chooser.cxx,v 1.6 1999/01/07 19:17:51 mike Exp $" // // Color chooser test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.5 1998/12/06 15:46:13 mike Exp $". +// End of "$Id: color_chooser.cxx,v 1.6 1999/01/07 19:17:51 mike Exp $". // diff --git a/test/connect.cxx b/test/connect.cxx index 51ef449f9..5b690e64e 100644 --- a/test/connect.cxx +++ b/test/connect.cxx @@ -1,5 +1,5 @@ // -// "$Id: connect.cxx,v 1.3 1998/10/21 14:21:20 mike Exp $" +// "$Id: connect.cxx,v 1.4 1999/01/07 19:17:51 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ int main(int argc, char ** argv) { } // -// End of "$Id: connect.cxx,v 1.3 1998/10/21 14:21:20 mike Exp $". +// End of "$Id: connect.cxx,v 1.4 1999/01/07 19:17:51 mike Exp $". // diff --git a/test/cube.cxx b/test/cube.cxx index 4fd9e091a..f1d2f6093 100644 --- a/test/cube.cxx +++ b/test/cube.cxx @@ -1,11 +1,11 @@ // -// "$Id: cube.cxx,v 1.3 1998/10/21 14:21:21 mike Exp $" +// "$Id: cube.cxx,v 1.4 1999/01/07 19:17:51 mike Exp $" // // Another forms test program for the Fast Light Tool Kit (FLTK). // // Modified to have 2 cubes to test multiple OpenGL contexts // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -169,5 +169,5 @@ main(int argc, char **argv) { } // -// End of "$Id: cube.cxx,v 1.3 1998/10/21 14:21:21 mike Exp $". +// End of "$Id: cube.cxx,v 1.4 1999/01/07 19:17:51 mike Exp $". // diff --git a/test/cursor.cxx b/test/cursor.cxx index b05bba848..9470bc9a4 100644 --- a/test/cursor.cxx +++ b/test/cursor.cxx @@ -1,9 +1,9 @@ // -// "$Id: cursor.cxx,v 1.3 1998/10/21 14:21:22 mike Exp $" +// "$Id: cursor.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $" // // Cursor test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:22 mike Exp $". +// End of "$Id: cursor.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $". // diff --git a/test/curve.cxx b/test/curve.cxx index 52e86aae1..e9d6a49d5 100644 --- a/test/curve.cxx +++ b/test/curve.cxx @@ -1,9 +1,9 @@ // -// "$Id: curve.cxx,v 1.3 1998/10/21 14:21:22 mike Exp $" +// "$Id: curve.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $" // // Curve test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:22 mike Exp $". +// End of "$Id: curve.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $". // diff --git a/test/demo.cxx b/test/demo.cxx index 73726f5ce..cdd88d110 100644 --- a/test/demo.cxx +++ b/test/demo.cxx @@ -1,9 +1,9 @@ // -// "$Id: demo.cxx,v 1.6 1999/01/07 16:58:26 mike Exp $" +// "$Id: demo.cxx,v 1.7 1999/01/07 19:17:52 mike Exp $" // // Main demo program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -288,5 +288,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: demo.cxx,v 1.6 1999/01/07 16:58:26 mike Exp $". +// End of "$Id: demo.cxx,v 1.7 1999/01/07 19:17:52 mike Exp $". // diff --git a/test/doublebuffer.cxx b/test/doublebuffer.cxx index dfcd372f0..eb889c0e2 100644 --- a/test/doublebuffer.cxx +++ b/test/doublebuffer.cxx @@ -1,5 +1,5 @@ // -// "$Id: doublebuffer.cxx,v 1.3 1998/10/21 14:21:23 mike Exp $" +// "$Id: doublebuffer.cxx,v 1.4 1999/01/07 19:17:52 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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() { } // -// End of "$Id: doublebuffer.cxx,v 1.3 1998/10/21 14:21:23 mike Exp $". +// End of "$Id: doublebuffer.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $". // diff --git a/test/editor.cxx b/test/editor.cxx index 1042461cf..253264121 100644 --- a/test/editor.cxx +++ b/test/editor.cxx @@ -1,11 +1,11 @@ // -// "$Id: editor.cxx,v 1.1 1998/12/23 20:04:31 mike Exp $" +// "$Id: editor.cxx,v 1.2 1999/01/07 19:17:53 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -385,5 +385,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: editor.cxx,v 1.1 1998/12/23 20:04:31 mike Exp $". +// End of "$Id: editor.cxx,v 1.2 1999/01/07 19:17:53 mike Exp $". // diff --git a/test/file_chooser.cxx b/test/file_chooser.cxx index 8ca5854c8..2c1cea96e 100644 --- a/test/file_chooser.cxx +++ b/test/file_chooser.cxx @@ -1,9 +1,9 @@ // -// "$Id: file_chooser.cxx,v 1.3 1998/10/21 14:21:24 mike Exp $" +// "$Id: file_chooser.cxx,v 1.4 1999/01/07 19:17:53 mike Exp $" // // File chooser test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -59,5 +59,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: file_chooser.cxx,v 1.3 1998/10/21 14:21:24 mike Exp $". +// End of "$Id: file_chooser.cxx,v 1.4 1999/01/07 19:17:53 mike Exp $". // diff --git a/test/fl_jpeg_image.cxx b/test/fl_jpeg_image.cxx index 77a69d879..aa916adcc 100644 --- a/test/fl_jpeg_image.cxx +++ b/test/fl_jpeg_image.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_jpeg_image.cxx,v 1.4 1998/12/06 15:57:02 mike Exp $" +// "$Id: fl_jpeg_image.cxx,v 1.5 1999/01/07 19:17:53 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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.4 1998/12/06 15:57:02 mike Exp $". +// End of "$Id: fl_jpeg_image.cxx,v 1.5 1999/01/07 19:17:53 mike Exp $". // diff --git a/test/fonts.cxx b/test/fonts.cxx index 1445dd308..730c06932 100644 --- a/test/fonts.cxx +++ b/test/fonts.cxx @@ -1,9 +1,9 @@ // -// "$Id: fonts.cxx,v 1.4 1999/01/04 19:27:48 mike Exp $" +// "$Id: fonts.cxx,v 1.5 1999/01/07 19:17:53 mike Exp $" // // Font demo program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -164,5 +164,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: fonts.cxx,v 1.4 1999/01/04 19:27:48 mike Exp $". +// End of "$Id: fonts.cxx,v 1.5 1999/01/07 19:17:53 mike Exp $". // diff --git a/test/forms.cxx b/test/forms.cxx index 812d026b5..07e11005b 100644 --- a/test/forms.cxx +++ b/test/forms.cxx @@ -1,5 +1,5 @@ // -// "$Id: forms.cxx,v 1.3 1998/10/21 14:21:26 mike Exp $" +// "$Id: forms.cxx,v 1.4 1999/01/07 19:17:53 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -229,5 +229,5 @@ main (int argc, char *argv[]) } // -// End of "$Id: forms.cxx,v 1.3 1998/10/21 14:21:26 mike Exp $". +// End of "$Id: forms.cxx,v 1.4 1999/01/07 19:17:53 mike Exp $". // diff --git a/test/fractals.cxx b/test/fractals.cxx index 636d3306a..830bf561f 100644 --- a/test/fractals.cxx +++ b/test/fractals.cxx @@ -1,5 +1,5 @@ // -// "$Id: fractals.cxx,v 1.3 1998/10/21 14:21:26 mike Exp $" +// "$Id: fractals.cxx,v 1.4 1999/01/07 19:17:54 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -802,5 +802,5 @@ int main(int argc, char** argv) #endif // -// End of "$Id: fractals.cxx,v 1.3 1998/10/21 14:21:26 mike Exp $". +// End of "$Id: fractals.cxx,v 1.4 1999/01/07 19:17:54 mike Exp $". // diff --git a/test/fullscreen.cxx b/test/fullscreen.cxx index 2592414ab..666238590 100644 --- a/test/fullscreen.cxx +++ b/test/fullscreen.cxx @@ -1,5 +1,5 @@ // -// "$Id: fullscreen.cxx,v 1.3 1998/10/21 14:21:27 mike Exp $" +// "$Id: fullscreen.cxx,v 1.4 1999/01/07 19:17:54 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:27 mike Exp $". +// End of "$Id: fullscreen.cxx,v 1.4 1999/01/07 19:17:54 mike Exp $". // diff --git a/test/gl_overlay.cxx b/test/gl_overlay.cxx index 7770bad85..2f5c131eb 100644 --- a/test/gl_overlay.cxx +++ b/test/gl_overlay.cxx @@ -1,9 +1,9 @@ // -// "$Id: gl_overlay.cxx,v 1.3 1998/10/21 14:21:28 mike Exp $" +// "$Id: gl_overlay.cxx,v 1.4 1999/01/07 19:17:54 mike Exp $" // // OpenGL overlay test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:28 mike Exp $". +// End of "$Id: gl_overlay.cxx,v 1.4 1999/01/07 19:17:54 mike Exp $". // diff --git a/test/glpuzzle.cxx b/test/glpuzzle.cxx index b9533e667..774e75a2f 100644 --- a/test/glpuzzle.cxx +++ b/test/glpuzzle.cxx @@ -1,12 +1,12 @@ // -// "$Id: glpuzzle.cxx,v 1.5 1998/12/29 13:34:35 mike Exp $" +// "$Id: glpuzzle.cxx,v 1.6 1999/01/07 19:17:55 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -1479,5 +1479,5 @@ main(int argc, char **argv) #endif // added for fltk's distribution // -// End of "$Id: glpuzzle.cxx,v 1.5 1998/12/29 13:34:35 mike Exp $". +// End of "$Id: glpuzzle.cxx,v 1.6 1999/01/07 19:17:55 mike Exp $". // diff --git a/test/hello.cxx b/test/hello.cxx index 391d2c7f2..10b007fc9 100644 --- a/test/hello.cxx +++ b/test/hello.cxx @@ -1,9 +1,9 @@ // -// "$Id: hello.cxx,v 1.3 1998/10/21 14:21:29 mike Exp $" +// "$Id: hello.cxx,v 1.4 1999/01/07 19:17:55 mike Exp $" // // Hello, World! program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:29 mike Exp $". +// End of "$Id: hello.cxx,v 1.4 1999/01/07 19:17:55 mike Exp $". // diff --git a/test/iconize.cxx b/test/iconize.cxx index 91841bb50..fa266e894 100644 --- a/test/iconize.cxx +++ b/test/iconize.cxx @@ -1,9 +1,9 @@ // -// "$Id: iconize.cxx,v 1.3 1998/10/21 14:21:29 mike Exp $" +// "$Id: iconize.cxx,v 1.4 1999/01/07 19:17:55 mike Exp $" // // Iconize test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:29 mike Exp $". +// End of "$Id: iconize.cxx,v 1.4 1999/01/07 19:17:55 mike Exp $". // diff --git a/test/image.cxx b/test/image.cxx index 6ff647928..0e32f32e1 100644 --- a/test/image.cxx +++ b/test/image.cxx @@ -1,5 +1,5 @@ // -// "$Id: image.cxx,v 1.5 1998/12/06 15:57:03 mike Exp $" +// "$Id: image.cxx,v 1.6 1999/01/07 19:17:55 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -133,5 +133,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: image.cxx,v 1.5 1998/12/06 15:57:03 mike Exp $". +// End of "$Id: image.cxx,v 1.6 1999/01/07 19:17:55 mike Exp $". // diff --git a/test/input.cxx b/test/input.cxx index bb2fa0e38..bdebdfe0b 100644 --- a/test/input.cxx +++ b/test/input.cxx @@ -1,9 +1,9 @@ // -// "$Id: input.cxx,v 1.4 1998/11/08 15:05:47 mike Exp $" +// "$Id: input.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $" // // Input field test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -117,5 +117,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: input.cxx,v 1.4 1998/11/08 15:05:47 mike Exp $". +// End of "$Id: input.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $". // diff --git a/test/jpeg_image.cxx b/test/jpeg_image.cxx index 727907108..0adf29229 100644 --- a/test/jpeg_image.cxx +++ b/test/jpeg_image.cxx @@ -1,5 +1,5 @@ // -// "$Id: jpeg_image.cxx,v 1.4 1998/12/06 15:57:03 mike Exp $" +// "$Id: jpeg_image.cxx,v 1.5 1999/01/07 19:17:56 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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.4 1998/12/06 15:57:03 mike Exp $". +// End of "$Id: jpeg_image.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $". // diff --git a/test/keyboard.cxx b/test/keyboard.cxx index 8d0c80f91..7b7b48c1e 100644 --- a/test/keyboard.cxx +++ b/test/keyboard.cxx @@ -1,5 +1,5 @@ // -// "$Id: keyboard.cxx,v 1.4 1998/12/06 15:57:04 mike Exp $" +// "$Id: keyboard.cxx,v 1.5 1999/01/07 19:17:56 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -127,5 +127,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: keyboard.cxx,v 1.4 1998/12/06 15:57:04 mike Exp $". +// End of "$Id: keyboard.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $". // diff --git a/test/label.cxx b/test/label.cxx index 3a1041adb..08a2d38b0 100644 --- a/test/label.cxx +++ b/test/label.cxx @@ -1,9 +1,9 @@ // -// "$Id: label.cxx,v 1.3 1998/10/21 14:21:32 mike Exp $" +// "$Id: label.cxx,v 1.4 1999/01/07 19:17:57 mike Exp $" // // Label test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:32 mike Exp $". +// End of "$Id: label.cxx,v 1.4 1999/01/07 19:17:57 mike Exp $". // diff --git a/test/list_visuals.cxx b/test/list_visuals.cxx index 69b723c4a..ac2398a82 100644 --- a/test/list_visuals.cxx +++ b/test/list_visuals.cxx @@ -1,5 +1,5 @@ // -// "$Id: list_visuals.cxx,v 1.4 1998/10/21 14:21:33 mike Exp $" +// "$Id: list_visuals.cxx,v 1.5 1999/01/07 19:17:57 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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.4 1998/10/21 14:21:33 mike Exp $". +// End of "$Id: list_visuals.cxx,v 1.5 1999/01/07 19:17:57 mike Exp $". // diff --git a/test/mandelbrot.cxx b/test/mandelbrot.cxx index ae13b2bf0..e089fe23c 100644 --- a/test/mandelbrot.cxx +++ b/test/mandelbrot.cxx @@ -1,9 +1,9 @@ // -// "$Id: mandelbrot.cxx,v 1.6 1998/12/08 21:06:54 mike Exp $" +// "$Id: mandelbrot.cxx,v 1.7 1999/01/07 19:17:57 mike Exp $" // // Mandelbrot set demo for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 X,int Y,int W,int H) { } // -// End of "$Id: mandelbrot.cxx,v 1.6 1998/12/08 21:06:54 mike Exp $". +// End of "$Id: mandelbrot.cxx,v 1.7 1999/01/07 19:17:57 mike Exp $". // diff --git a/test/mandelbrot.h b/test/mandelbrot.h index 51439d8ce..915c618de 100644 --- a/test/mandelbrot.h +++ b/test/mandelbrot.h @@ -1,9 +1,9 @@ // -// "$Id: mandelbrot.h,v 1.4 1998/10/21 16:35:18 mike Exp $" +// "$Id: mandelbrot.h,v 1.5 1999/01/07 19:17:57 mike Exp $" // // Mandelbrot set header file for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.4 1998/10/21 16:35:18 mike Exp $". +// End of "$Id: mandelbrot.h,v 1.5 1999/01/07 19:17:57 mike Exp $". // diff --git a/test/menubar.cxx b/test/menubar.cxx index f94d37e5c..0d9fe6ec9 100644 --- a/test/menubar.cxx +++ b/test/menubar.cxx @@ -1,9 +1,9 @@ // -// "$Id: menubar.cxx,v 1.4 1998/12/02 15:39:38 mike Exp $" +// "$Id: menubar.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $" // // Menubar test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -213,5 +213,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: menubar.cxx,v 1.4 1998/12/02 15:39:38 mike Exp $". +// End of "$Id: menubar.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $". // diff --git a/test/message.cxx b/test/message.cxx index 177200a73..b830aed04 100644 --- a/test/message.cxx +++ b/test/message.cxx @@ -1,9 +1,9 @@ // -// "$Id: message.cxx,v 1.4 1998/11/05 16:04:52 mike Exp $" +// "$Id: message.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $" // // Message test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -54,5 +54,5 @@ int main(int, char **) { } // -// End of "$Id: message.cxx,v 1.4 1998/11/05 16:04:52 mike Exp $". +// End of "$Id: message.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $". // diff --git a/test/minimum.cxx b/test/minimum.cxx index e0c7dadfc..e6c2ff8c9 100644 --- a/test/minimum.cxx +++ b/test/minimum.cxx @@ -1,5 +1,5 @@ // -// "$Id: minimum.cxx,v 1.3 1998/10/21 14:21:35 mike Exp $" +// "$Id: minimum.cxx,v 1.4 1999/01/07 19:17:58 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:35 mike Exp $". +// End of "$Id: minimum.cxx,v 1.4 1999/01/07 19:17:58 mike Exp $". // diff --git a/test/navigation.cxx b/test/navigation.cxx index 285c89ce9..1f06c7e26 100644 --- a/test/navigation.cxx +++ b/test/navigation.cxx @@ -1,12 +1,12 @@ // -// "$Id: navigation.cxx,v 1.4 1998/11/12 14:17:48 mike Exp $" +// "$Id: navigation.cxx,v 1.5 1999/01/07 19:17:58 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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.4 1998/11/12 14:17:48 mike Exp $". +// End of "$Id: navigation.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $". // diff --git a/test/output.cxx b/test/output.cxx index 78797695d..a0c813727 100644 --- a/test/output.cxx +++ b/test/output.cxx @@ -1,9 +1,9 @@ // -// "$Id: output.cxx,v 1.3 1998/10/21 14:21:36 mike Exp $" +// "$Id: output.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $" // // Output test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:36 mike Exp $". +// End of "$Id: output.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $". // diff --git a/test/overlay.cxx b/test/overlay.cxx index 0a6a30006..8a1a3f227 100644 --- a/test/overlay.cxx +++ b/test/overlay.cxx @@ -1,9 +1,9 @@ // -// "$Id: overlay.cxx,v 1.3 1998/10/21 14:21:37 mike Exp $" +// "$Id: overlay.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $" // // Overlay window test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:37 mike Exp $". +// End of "$Id: overlay.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $". // diff --git a/test/pack.cxx b/test/pack.cxx index 5fa274f46..1459652b3 100644 --- a/test/pack.cxx +++ b/test/pack.cxx @@ -1,5 +1,5 @@ // -// "$Id: pack.cxx,v 1.3 1998/10/21 14:21:38 mike Exp $" +// "$Id: pack.cxx,v 1.4 1999/01/07 19:17:59 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:38 mike Exp $". +// End of "$Id: pack.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $". // diff --git a/test/pixmap.cxx b/test/pixmap.cxx index 6ad5eb8be..657e6b2a3 100644 --- a/test/pixmap.cxx +++ b/test/pixmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: pixmap.cxx,v 1.3 1998/10/21 14:21:38 mike Exp $" +// "$Id: pixmap.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $" // // Pixmap label test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ int main(int argc, char **argv) { } // -// End of "$Id: pixmap.cxx,v 1.3 1998/10/21 14:21:38 mike Exp $". +// End of "$Id: pixmap.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $". // diff --git a/test/pixmap_browser.cxx b/test/pixmap_browser.cxx index 8399cfa48..13cd41dde 100644 --- a/test/pixmap_browser.cxx +++ b/test/pixmap_browser.cxx @@ -1,12 +1,12 @@ // -// "$Id: pixmap_browser.cxx,v 1.4 1998/11/05 16:04:53 mike Exp $" +// "$Id: pixmap_browser.cxx,v 1.5 1999/01/07 19:18:00 mike Exp $" // // Another pixmap test program for the Fast Light Tool Kit (FLTK). // // On purpose, I do NOT provide a fltk method to turn a file // into a pixmap. This program uses a rather simplistic one. // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -164,5 +164,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: pixmap_browser.cxx,v 1.4 1998/11/05 16:04:53 mike Exp $". +// End of "$Id: pixmap_browser.cxx,v 1.5 1999/01/07 19:18:00 mike Exp $". // diff --git a/test/resizebox.cxx b/test/resizebox.cxx index c66510e39..33435408d 100644 --- a/test/resizebox.cxx +++ b/test/resizebox.cxx @@ -1,9 +1,9 @@ // -// "$Id: resizebox.cxx,v 1.3 1998/10/21 14:21:39 mike Exp $" +// "$Id: resizebox.cxx,v 1.4 1999/01/07 19:18:00 mike Exp $" // // Resize box test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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: resizebox.cxx,v 1.3 1998/10/21 14:21:39 mike Exp $". +// End of "$Id: resizebox.cxx,v 1.4 1999/01/07 19:18:00 mike Exp $". // diff --git a/test/scroll.cxx b/test/scroll.cxx index bc41a6eb5..23446f2b2 100644 --- a/test/scroll.cxx +++ b/test/scroll.cxx @@ -1,9 +1,9 @@ // -// "$Id: scroll.cxx,v 1.3 1998/10/21 14:21:40 mike Exp $" +// "$Id: scroll.cxx,v 1.4 1999/01/07 19:18:00 mike Exp $" // // Fl_Scroll test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:40 mike Exp $". +// End of "$Id: scroll.cxx,v 1.4 1999/01/07 19:18:00 mike Exp $". // diff --git a/test/shape.cxx b/test/shape.cxx index ccf4afb14..2797b82f9 100644 --- a/test/shape.cxx +++ b/test/shape.cxx @@ -1,9 +1,9 @@ // -// "$Id: shape.cxx,v 1.3 1998/10/21 14:21:41 mike Exp $" +// "$Id: shape.cxx,v 1.4 1999/01/07 19:18:00 mike Exp $" // // Tiny OpenGL demo program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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: shape.cxx,v 1.3 1998/10/21 14:21:41 mike Exp $". +// End of "$Id: shape.cxx,v 1.4 1999/01/07 19:18:00 mike Exp $". // diff --git a/test/shiny.cxx b/test/shiny.cxx index 300a50127..5e9eb58f6 100644 --- a/test/shiny.cxx +++ b/test/shiny.cxx @@ -1,9 +1,9 @@ // -// "$Id: shiny.cxx,v 1.4 1998/12/06 15:57:05 mike Exp $" +// "$Id: shiny.cxx,v 1.5 1999/01/07 19:18:01 mike Exp $" // // OpenGL "shiny buttons" test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.4 1998/12/06 15:57:05 mike Exp $". +// End of "$Id: shiny.cxx,v 1.5 1999/01/07 19:18:01 mike Exp $". // diff --git a/test/subwindow.cxx b/test/subwindow.cxx index ff96e45ee..045747dfb 100644 --- a/test/subwindow.cxx +++ b/test/subwindow.cxx @@ -1,5 +1,5 @@ // -// "$Id: subwindow.cxx,v 1.3 1998/10/21 14:21:43 mike Exp $" +// "$Id: subwindow.cxx,v 1.4 1999/01/07 19:18:01 mike 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 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -132,5 +132,5 @@ int main(int, char **) { } // -// End of "$Id: subwindow.cxx,v 1.3 1998/10/21 14:21:43 mike Exp $". +// End of "$Id: subwindow.cxx,v 1.4 1999/01/07 19:18:01 mike Exp $". // diff --git a/test/symbols.cxx b/test/symbols.cxx index 5d5c591a5..a74fcab56 100644 --- a/test/symbols.cxx +++ b/test/symbols.cxx @@ -1,9 +1,9 @@ // -// "$Id: symbols.cxx,v 1.3 1998/10/21 14:21:43 mike Exp $" +// "$Id: symbols.cxx,v 1.4 1999/01/07 19:18:01 mike Exp $" // // Symbol test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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 @@ -85,5 +85,5 @@ bt("@DnArrow"); } // -// End of "$Id: symbols.cxx,v 1.3 1998/10/21 14:21:43 mike Exp $". +// End of "$Id: symbols.cxx,v 1.4 1999/01/07 19:18:01 mike Exp $". // diff --git a/test/tile.cxx b/test/tile.cxx index 81fba7c84..4c496a8bd 100755 --- a/test/tile.cxx +++ b/test/tile.cxx @@ -1,9 +1,9 @@ // -// "$Id: tile.cxx,v 1.3 1998/10/21 14:21:44 mike Exp $" +// "$Id: tile.cxx,v 1.4 1999/01/07 19:18:01 mike Exp $" // // Tile test program for the Fast Light Tool Kit (FLTK). // -// Copyright 1998 by Bill Spitzak and others. +// Copyright 1998-1999 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.3 1998/10/21 14:21:44 mike Exp $". +// End of "$Id: tile.cxx,v 1.4 1999/01/07 19:18:01 mike Exp $". // -- cgit v1.2.3