diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2000-06-05 21:21:24 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2000-06-05 21:21:24 +0000 |
| commit | f87393aaa1b6cfeb675c17a58e3d4c21252fac7a (patch) | |
| tree | de1a4b6f152e4e6c0fcf7d3f303e0575c38a59e4 /test | |
| parent | a6abbc5462d68208dcf7c4a3407414a7fe96268d (diff) | |
OK, now version 1.0.9
Updated email addresses to point to fltk.org domain...
Updated README and CHANGES files accordingly.
Updated makeinclude and Makefile files to put -L../lib before the
LDFLAGS/GLDFLAGS to avoid problem reported by Alexander.
documentation/Makefile wasn't including makeinclude.
Updated FLUID about window to show version 1.0.9.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1168 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
58 files changed, 187 insertions, 187 deletions
diff --git a/test/CubeMain.cxx b/test/CubeMain.cxx index 096644e37..d504a9327 100644 --- a/test/CubeMain.cxx +++ b/test/CubeMain.cxx @@ -1,5 +1,5 @@ // -// "$Id: CubeMain.cxx,v 1.2.2.1 2000/04/25 22:16:48 mike Exp $" +// "$Id: CubeMain.cxx,v 1.2.2.2 2000/06/05 21:21:14 mike Exp $" // // CubeView class definitions for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <config.h> @@ -43,5 +43,5 @@ main(int argc, char **argv) { // -// End of "$Id: CubeMain.cxx,v 1.2.2.1 2000/04/25 22:16:48 mike Exp $". +// End of "$Id: CubeMain.cxx,v 1.2.2.2 2000/06/05 21:21:14 mike Exp $". // diff --git a/test/CubeView.cxx b/test/CubeView.cxx index 6abda7303..dae5968c4 100644 --- a/test/CubeView.cxx +++ b/test/CubeView.cxx @@ -1,5 +1,5 @@ // -// "$Id: CubeView.cxx,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $" +// "$Id: CubeView.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" // // CubeView class implementation for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include "CubeView.h" @@ -165,5 +165,5 @@ void CubeView::draw() { #endif /* HAVE_GL */ // -// End of "$Id: CubeView.cxx,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $". +// End of "$Id: CubeView.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". // diff --git a/test/CubeView.h b/test/CubeView.h index 20a5de079..d29f3b1e6 100644 --- a/test/CubeView.h +++ b/test/CubeView.h @@ -1,5 +1,5 @@ // -// "$Id: CubeView.h,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $" +// "$Id: CubeView.h,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" // // CubeView class definitions for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #ifndef CUBEVIEW_H @@ -119,5 +119,5 @@ private: #endif // -// End of "$Id: CubeView.h,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $". +// End of "$Id: CubeView.h,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". // diff --git a/test/Makefile b/test/Makefile index 885f69166..5ba70dbd6 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.19.2.5 2000/06/03 12:04:12 mike Exp $" +# "$Id: Makefile,v 1.19.2.6 2000/06/05 21:21:15 mike Exp $" # # Test/example program makefile for the Fast Light Tool Kit (FLTK). # @@ -20,7 +20,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA. # -# Please report all bugs and problems to "fltk-bugs@easysw.com". +# Please report all bugs and problems to "fltk-bugs@fltk.org". # CPPFILES =\ @@ -56,7 +56,7 @@ include ../makeinclude .fl: echo Generating, compiling, and linking $@... ../fluid/fluid -c $< - $(CXX) -I.. $(CXXFLAGS) $@.cxx -L../lib -lfltk $(LDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) $@.cxx -lfltk $(LDLIBS) -o $@ $(ALL): ../lib/$(LIBNAME) @@ -64,44 +64,44 @@ $(ALL): ../lib/$(LIBNAME) # Other programs needing special "help"... CubeView: CubeMain.o CubeView.o CubeViewUI.o echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) CubeMain.o CubeView.o CubeViewUI.o \ - -L../lib -lfltk $(GLDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) CubeMain.o CubeView.o CubeViewUI.o \ + -lfltk $(GLDLIBS) -o $@ CubeMain.o: CubeViewUI.h CubeView.h CubeView.o: CubeView.h cube: cube.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) cube.cxx -L../lib -lfltk $(GLDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) cube.cxx -lfltk $(GLDLIBS) -o $@ fractals: fractals.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) fractals.cxx -L../lib -lfltk $(GLDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) fractals.cxx -lfltk $(GLDLIBS) -o $@ fullscreen: fullscreen.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) fullscreen.cxx -L../lib -lfltk $(GLDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) fullscreen.cxx -lfltk $(GLDLIBS) -o $@ glpuzzle: glpuzzle.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) glpuzzle.cxx -L../lib -lfltk $(GLDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) glpuzzle.cxx -lfltk $(GLDLIBS) -o $@ gl_overlay: gl_overlay.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) gl_overlay.cxx -L../lib -lfltk $(GLDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) gl_overlay.cxx -lfltk $(GLDLIBS) -o $@ shiny: shiny.cxx shiny_panel.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) shiny.cxx -L../lib -lfltk $(GLDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) shiny.cxx -lfltk $(GLDLIBS) -o $@ keyboard: keyboard.cxx keyboard_ui.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) keyboard.cxx -L../lib -lfltk $(LDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) keyboard.cxx -lfltk $(LDLIBS) -o $@ mandelbrot: mandelbrot.cxx mandelbrot_ui.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) mandelbrot.cxx -L../lib -lfltk $(LDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) mandelbrot.cxx -lfltk $(LDLIBS) -o $@ shape: shape.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) shape.cxx -L../lib -lfltk $(GLDLIBS) -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) shape.cxx -lfltk $(GLDLIBS) -o $@ # If you have libjpeg installed, you might want to try this test program: jpeg_image: jpeg_image.cxx echo Compiling and linking $@... - $(CXX) -I.. $(CXXFLAGS) -I../../../local/jpeg-6b -L../../../local/jpeg-6b jpeg_image.cxx -L../lib -lfltk $(LDLIBS) -ljpeg -lXext -o $@ + $(CXX) -I.. -L../lib $(CXXFLAGS) -I../../../local/jpeg-6b -L../../../local/jpeg-6b jpeg_image.cxx -lfltk $(LDLIBS) -ljpeg -lXext -o $@ depend: $(MAKEDEPEND) -I.. $(CXXFLAGS) $(CPPFILES) > makedepend @@ -113,5 +113,5 @@ install: @echo Nothing to install in test directory. # -# End of "$Id: Makefile,v 1.19.2.5 2000/06/03 12:04:12 mike Exp $". +# End of "$Id: Makefile,v 1.19.2.6 2000/06/05 21:21:15 mike Exp $". # diff --git a/test/adjuster.cxx b/test/adjuster.cxx index 3b730aacb..2fef87bb2 100644 --- a/test/adjuster.cxx +++ b/test/adjuster.cxx @@ -1,5 +1,5 @@ // -// "$Id: adjuster.cxx,v 1.4.2.1 2000/04/25 22:16:49 mike Exp $" +// "$Id: adjuster.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" // // Adjuster test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -60,5 +60,5 @@ int main(int, char ** argv) { } // -// End of "$Id: adjuster.cxx,v 1.4.2.1 2000/04/25 22:16:49 mike Exp $". +// End of "$Id: adjuster.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". // diff --git a/test/arc.cxx b/test/arc.cxx index ede4ab38a..3bb834fe4 100755 --- a/test/arc.cxx +++ b/test/arc.cxx @@ -1,5 +1,5 @@ // -// "$Id: arc.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $" +// "$Id: arc.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" // // Arc drawing test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -92,6 +92,6 @@ int main(int argc, char** argv) { // -// End of "$Id: arc.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $". +// End of "$Id: arc.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". // diff --git a/test/ask.cxx b/test/ask.cxx index c570e5808..001d4ffab 100644 --- a/test/ask.cxx +++ b/test/ask.cxx @@ -1,5 +1,5 @@ // -// "$Id: ask.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $" +// "$Id: ask.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" // // Standard dialog test program for the Fast Light Tool Kit (FLTK). // @@ -27,7 +27,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdio.h> @@ -110,5 +110,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: ask.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $". +// End of "$Id: ask.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". // diff --git a/test/bitmap.cxx b/test/bitmap.cxx index 7aea0d76f..f7d71ca7b 100644 --- a/test/bitmap.cxx +++ b/test/bitmap.cxx @@ -1,5 +1,5 @@ // -// "$Id: bitmap.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $" +// "$Id: bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" // // Bitmap label test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -137,5 +137,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: bitmap.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $". +// End of "$Id: bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". // diff --git a/test/boxtype.cxx b/test/boxtype.cxx index cbefabe17..c73ff492f 100644 --- a/test/boxtype.cxx +++ b/test/boxtype.cxx @@ -1,5 +1,5 @@ // -// "$Id: boxtype.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $" +// "$Id: boxtype.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" // // Boxtype test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -89,5 +89,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: boxtype.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $". +// End of "$Id: boxtype.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". // diff --git a/test/browser.cxx b/test/browser.cxx index 927d41f67..b7ab42967 100644 --- a/test/browser.cxx +++ b/test/browser.cxx @@ -1,5 +1,5 @@ // -// "$Id: browser.cxx,v 1.5.2.3 2000/04/25 22:16:50 mike Exp $" +// "$Id: browser.cxx,v 1.5.2.4 2000/06/05 21:21:16 mike Exp $" // // Browser test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // /* @@ -96,6 +96,6 @@ int main(int argc, char **argv) { } // -// End of "$Id: browser.cxx,v 1.5.2.3 2000/04/25 22:16:50 mike Exp $". +// End of "$Id: browser.cxx,v 1.5.2.4 2000/06/05 21:21:16 mike Exp $". // diff --git a/test/browserop.cxx b/test/browserop.cxx index d7f12fa92..7845dcda6 100644 --- a/test/browserop.cxx +++ b/test/browserop.cxx @@ -1,5 +1,5 @@ // -// "$Id: browserop.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $" +// "$Id: browserop.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $" // // Browser operation test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include "forms.h" @@ -104,5 +104,5 @@ main(int argc, char *argv[]) } // -// End of "$Id: browserop.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $". +// End of "$Id: browserop.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $". // diff --git a/test/button.cxx b/test/button.cxx index 41de646fc..794736aa8 100644 --- a/test/button.cxx +++ b/test/button.cxx @@ -1,5 +1,5 @@ // -// "$Id: button.cxx,v 1.4.2.2 2000/04/25 22:16:51 mike Exp $" +// "$Id: button.cxx,v 1.4.2.3 2000/06/05 21:21:16 mike Exp $" // // Button/callback test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -62,5 +62,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: button.cxx,v 1.4.2.2 2000/04/25 22:16:51 mike Exp $". +// End of "$Id: button.cxx,v 1.4.2.3 2000/06/05 21:21:16 mike Exp $". // diff --git a/test/buttons.cxx b/test/buttons.cxx index 18b9c2fbc..f553da9ba 100644 --- a/test/buttons.cxx +++ b/test/buttons.cxx @@ -1,5 +1,5 @@ // -// "$Id: buttons.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $" +// "$Id: buttons.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $" // // Another button test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -48,5 +48,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: buttons.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $". +// End of "$Id: buttons.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $". // diff --git a/test/checkers.cxx b/test/checkers.cxx index 7734e95ca..046c200d8 100644 --- a/test/checkers.cxx +++ b/test/checkers.cxx @@ -1,5 +1,5 @@ // -// "$Id: checkers.cxx,v 1.9.2.4 2000/04/25 22:16:51 mike Exp $" +// "$Id: checkers.cxx,v 1.9.2.5 2000/06/05 21:21:16 mike Exp $" // // Checkers game for the Fast Light Tool Kit (FLTK). // @@ -23,7 +23,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // const char* copyright = @@ -1365,5 +1365,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: checkers.cxx,v 1.9.2.4 2000/04/25 22:16:51 mike Exp $". +// End of "$Id: checkers.cxx,v 1.9.2.5 2000/06/05 21:21:16 mike Exp $". // diff --git a/test/clock.cxx b/test/clock.cxx index b37a92e85..bf7644c83 100644 --- a/test/clock.cxx +++ b/test/clock.cxx @@ -1,5 +1,5 @@ // -// "$Id: clock.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $" +// "$Id: clock.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $" // // Clock test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -47,5 +47,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: clock.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $". +// End of "$Id: clock.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $". // diff --git a/test/colbrowser.cxx b/test/colbrowser.cxx index 961533a3c..c0c8f09f1 100644 --- a/test/colbrowser.cxx +++ b/test/colbrowser.cxx @@ -1,5 +1,5 @@ // -// "$Id: colbrowser.cxx,v 1.5.2.1 2000/04/25 22:16:51 mike Exp $" +// "$Id: colbrowser.cxx,v 1.5.2.2 2000/06/05 21:21:17 mike Exp $" // // Forms test program for the Fast Light Tool Kit (FLTK). // @@ -25,7 +25,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/forms.H> // changed for fltk @@ -340,5 +340,5 @@ create_form_cl(void) } // -// End of "$Id: colbrowser.cxx,v 1.5.2.1 2000/04/25 22:16:51 mike Exp $". +// End of "$Id: colbrowser.cxx,v 1.5.2.2 2000/06/05 21:21:17 mike Exp $". // diff --git a/test/color_chooser.cxx b/test/color_chooser.cxx index 355aee332..a15d7d0c6 100644 --- a/test/color_chooser.cxx +++ b/test/color_chooser.cxx @@ -1,5 +1,5 @@ // -// "$Id: color_chooser.cxx,v 1.6.2.1 2000/04/25 22:16:52 mike Exp $" +// "$Id: color_chooser.cxx,v 1.6.2.2 2000/06/05 21:21:17 mike Exp $" // // Color chooser test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -146,5 +146,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: color_chooser.cxx,v 1.6.2.1 2000/04/25 22:16:52 mike Exp $". +// End of "$Id: color_chooser.cxx,v 1.6.2.2 2000/06/05 21:21:17 mike Exp $". // diff --git a/test/connect.cxx b/test/connect.cxx index f59a61c4f..613625187 100644 --- a/test/connect.cxx +++ b/test/connect.cxx @@ -1,5 +1,5 @@ // -// "$Id: connect.cxx,v 1.4.2.2 2000/04/25 22:16:52 mike Exp $" +// "$Id: connect.cxx,v 1.4.2.3 2000/06/05 21:21:17 mike Exp $" // // PPP example program for the Fast Light Tool Kit (FLTK). // @@ -24,7 +24,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -71,5 +71,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: connect.cxx,v 1.4.2.2 2000/04/25 22:16:52 mike Exp $". +// End of "$Id: connect.cxx,v 1.4.2.3 2000/06/05 21:21:17 mike Exp $". // diff --git a/test/cube.cxx b/test/cube.cxx index afec30c60..04b0b2b9a 100644 --- a/test/cube.cxx +++ b/test/cube.cxx @@ -1,5 +1,5 @@ // -// "$Id: cube.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $" +// "$Id: cube.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $" // // Another forms test program for the Fast Light Tool Kit (FLTK). // @@ -22,7 +22,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <config.h> @@ -169,5 +169,5 @@ main(int argc, char **argv) { } // -// End of "$Id: cube.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $". +// End of "$Id: cube.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $". // diff --git a/test/cursor.cxx b/test/cursor.cxx index 83bb1cd86..763c1365f 100644 --- a/test/cursor.cxx +++ b/test/cursor.cxx @@ -1,5 +1,5 @@ // -// "$Id: cursor.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $" +// "$Id: cursor.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $" // // Cursor test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -159,5 +159,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: cursor.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $". +// End of "$Id: cursor.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $". // diff --git a/test/curve.cxx b/test/curve.cxx index bcc858975..6743aa6c4 100644 --- a/test/curve.cxx +++ b/test/curve.cxx @@ -1,5 +1,5 @@ // -// "$Id: curve.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $" +// "$Id: curve.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $" // // Curve test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -109,5 +109,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: curve.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $". +// End of "$Id: curve.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $". // diff --git a/test/demo.cxx b/test/demo.cxx index a84a8a54e..935b3aa32 100644 --- a/test/demo.cxx +++ b/test/demo.cxx @@ -1,5 +1,5 @@ // -// "$Id: demo.cxx,v 1.8.2.2 2000/04/25 22:16:52 mike Exp $" +// "$Id: demo.cxx,v 1.8.2.3 2000/06/05 21:21:18 mike Exp $" // // Main demo program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdio.h> @@ -332,6 +332,6 @@ int main(int argc, char **argv) { } // -// End of "$Id: demo.cxx,v 1.8.2.2 2000/04/25 22:16:52 mike Exp $". +// End of "$Id: demo.cxx,v 1.8.2.3 2000/06/05 21:21:18 mike Exp $". // diff --git a/test/doublebuffer.cxx b/test/doublebuffer.cxx index 0f05445e3..f5a7aed0c 100644 --- a/test/doublebuffer.cxx +++ b/test/doublebuffer.cxx @@ -1,5 +1,5 @@ // -// "$Id: doublebuffer.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $" +// "$Id: doublebuffer.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $" // // Double-buffering test program for the Fast Light Tool Kit (FLTK). // @@ -30,7 +30,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -122,5 +122,5 @@ int main() { } // -// End of "$Id: doublebuffer.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $". +// End of "$Id: doublebuffer.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $". // diff --git a/test/editor.cxx b/test/editor.cxx index 83188250a..e23a3418c 100644 --- a/test/editor.cxx +++ b/test/editor.cxx @@ -1,5 +1,5 @@ // -// "$Id: editor.cxx,v 1.2.2.1 2000/04/25 22:16:53 mike Exp $" +// "$Id: editor.cxx,v 1.2.2.2 2000/06/05 21:21:18 mike Exp $" // // A simple text editor program for the Fast Light Tool Kit (FLTK). // @@ -22,7 +22,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // // @@ -385,5 +385,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: editor.cxx,v 1.2.2.1 2000/04/25 22:16:53 mike Exp $". +// End of "$Id: editor.cxx,v 1.2.2.2 2000/06/05 21:21:18 mike Exp $". // diff --git a/test/file_chooser.cxx b/test/file_chooser.cxx index 601ed85af..61fdec717 100644 --- a/test/file_chooser.cxx +++ b/test/file_chooser.cxx @@ -1,5 +1,5 @@ // -// "$Id: file_chooser.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $" +// "$Id: file_chooser.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $" // // File chooser test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -59,5 +59,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: file_chooser.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $". +// End of "$Id: file_chooser.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $". // diff --git a/test/fl_jpeg_image.cxx b/test/fl_jpeg_image.cxx index 46f7ec36c..a31b5dda9 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.1 2000/04/25 22:16:54 mike Exp $" +// "$Id: fl_jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $" // // fl_draw_image test program for the Fast Light Tool Kit (FLTK). // @@ -37,7 +37,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -197,5 +197,5 @@ void readtheimage(const char *name) { #endif // -// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $". +// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $". // diff --git a/test/fonts.cxx b/test/fonts.cxx index 9f4d35b1e..7f113b8c2 100644 --- a/test/fonts.cxx +++ b/test/fonts.cxx @@ -1,5 +1,5 @@ // -// "$Id: fonts.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $" +// "$Id: fonts.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $" // // Font demo program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -164,5 +164,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: fonts.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $". +// End of "$Id: fonts.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $". // diff --git a/test/forms.cxx b/test/forms.cxx index 41df87de9..83aeebe75 100644 --- a/test/forms.cxx +++ b/test/forms.cxx @@ -1,5 +1,5 @@ // -// "$Id: forms.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $" +// "$Id: forms.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $" // // Another forms demo for the Fast Light Tool Kit (FLTK). // @@ -26,7 +26,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/forms.H> // changed for fltk @@ -229,5 +229,5 @@ main (int argc, char *argv[]) } // -// End of "$Id: forms.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $". +// End of "$Id: forms.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $". // diff --git a/test/fractals.cxx b/test/fractals.cxx index d241d3464..1b0041dda 100644 --- a/test/fractals.cxx +++ b/test/fractals.cxx @@ -1,5 +1,5 @@ // -// "$Id: fractals.cxx,v 1.5.2.2 2000/04/25 22:16:54 mike Exp $" +// "$Id: fractals.cxx,v 1.5.2.3 2000/06/05 21:21:19 mike Exp $" // // Fractal drawing demo for the Fast Light Tool Kit (FLTK). // @@ -24,7 +24,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <config.h> @@ -805,5 +805,5 @@ int main(int argc, char** argv) #endif // -// End of "$Id: fractals.cxx,v 1.5.2.2 2000/04/25 22:16:54 mike Exp $". +// End of "$Id: fractals.cxx,v 1.5.2.3 2000/06/05 21:21:19 mike Exp $". // diff --git a/test/fullscreen.cxx b/test/fullscreen.cxx index 5bbdea2d9..0785c6080 100644 --- a/test/fullscreen.cxx +++ b/test/fullscreen.cxx @@ -1,5 +1,5 @@ // -// "$Id: fullscreen.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $" +// "$Id: fullscreen.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $" // // Fullscreen test program for the Fast Light Tool Kit (FLTK). // @@ -51,7 +51,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <config.h> @@ -240,5 +240,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: fullscreen.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $". +// End of "$Id: fullscreen.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $". // diff --git a/test/gl_overlay.cxx b/test/gl_overlay.cxx index c14971782..c4864b556 100644 --- a/test/gl_overlay.cxx +++ b/test/gl_overlay.cxx @@ -1,5 +1,5 @@ // -// "$Id: gl_overlay.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $" +// "$Id: gl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $" // // OpenGL overlay test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <config.h> @@ -151,5 +151,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: gl_overlay.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $". +// End of "$Id: gl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $". // diff --git a/test/glpuzzle.cxx b/test/glpuzzle.cxx index 4db2d194a..585af161b 100644 --- a/test/glpuzzle.cxx +++ b/test/glpuzzle.cxx @@ -1,5 +1,5 @@ // -// "$Id: glpuzzle.cxx,v 1.8.2.1 2000/04/25 22:16:55 mike Exp $" +// "$Id: glpuzzle.cxx,v 1.8.2.2 2000/06/05 21:21:20 mike Exp $" // // OpenGL puzzle demo for the Fast Light Tool Kit (FLTK). // @@ -23,7 +23,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // // this block added for fltk's distribtion so it will compile w/o OpenGL: @@ -1479,5 +1479,5 @@ main(int argc, char **argv) #endif // added for fltk's distribution // -// End of "$Id: glpuzzle.cxx,v 1.8.2.1 2000/04/25 22:16:55 mike Exp $". +// End of "$Id: glpuzzle.cxx,v 1.8.2.2 2000/06/05 21:21:20 mike Exp $". // diff --git a/test/hello.cxx b/test/hello.cxx index cfec205c7..69aa7d722 100644 --- a/test/hello.cxx +++ b/test/hello.cxx @@ -1,5 +1,5 @@ // -// "$Id: hello.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $" +// "$Id: hello.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $" // // Hello, World! program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -39,5 +39,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: hello.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $". +// End of "$Id: hello.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $". // diff --git a/test/iconize.cxx b/test/iconize.cxx index 9ca7d58f5..62b1993ec 100644 --- a/test/iconize.cxx +++ b/test/iconize.cxx @@ -1,5 +1,5 @@ // -// "$Id: iconize.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $" +// "$Id: iconize.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $" // // Iconize test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -77,5 +77,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: iconize.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $". +// End of "$Id: iconize.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $". // diff --git a/test/image.cxx b/test/image.cxx index 997c97fb9..6dd8e8f93 100644 --- a/test/image.cxx +++ b/test/image.cxx @@ -1,5 +1,5 @@ // -// "$Id: image.cxx,v 1.6.2.1 2000/04/25 22:16:55 mike Exp $" +// "$Id: image.cxx,v 1.6.2.2 2000/06/05 21:21:21 mike Exp $" // // Fl_Image test program for the Fast Light Tool Kit (FLTK). // @@ -24,7 +24,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -133,5 +133,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: image.cxx,v 1.6.2.1 2000/04/25 22:16:55 mike Exp $". +// End of "$Id: image.cxx,v 1.6.2.2 2000/06/05 21:21:21 mike Exp $". // diff --git a/test/input.cxx b/test/input.cxx index 8fb571327..9beb848fc 100644 --- a/test/input.cxx +++ b/test/input.cxx @@ -1,5 +1,5 @@ // -// "$Id: input.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $" +// "$Id: input.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $" // // Input field test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdio.h> @@ -117,5 +117,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: input.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $". +// End of "$Id: input.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $". // diff --git a/test/jpeg_image.cxx b/test/jpeg_image.cxx index 3b905f556..d2f578510 100644 --- a/test/jpeg_image.cxx +++ b/test/jpeg_image.cxx @@ -1,5 +1,5 @@ // -// "$Id: jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $" +// "$Id: jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $" // // fl_draw_image test program for the Fast Light Tool Kit (FLTK). // @@ -37,7 +37,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -198,5 +198,5 @@ void readtheimage(const char *name) { #endif // -// End of "$Id: jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $". +// End of "$Id: jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $". // diff --git a/test/keyboard.cxx b/test/keyboard.cxx index c567b6fc2..facdcc9ad 100644 --- a/test/keyboard.cxx +++ b/test/keyboard.cxx @@ -1,5 +1,5 @@ // -// "$Id: keyboard.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $" +// "$Id: keyboard.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $" // // Keyboard/event test program for the Fast Light Tool Kit (FLTK). // @@ -34,7 +34,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include "keyboard_ui.cxx" @@ -127,5 +127,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: keyboard.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $". +// End of "$Id: keyboard.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $". // diff --git a/test/label.cxx b/test/label.cxx index 610f8b1ff..77eb58bda 100644 --- a/test/label.cxx +++ b/test/label.cxx @@ -1,5 +1,5 @@ // -// "$Id: label.cxx,v 1.4.2.1 2000/04/25 22:16:56 mike Exp $" +// "$Id: label.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $" // // Label test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -156,5 +156,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: label.cxx,v 1.4.2.1 2000/04/25 22:16:56 mike Exp $". +// End of "$Id: label.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $". // diff --git a/test/list_visuals.cxx b/test/list_visuals.cxx index 5d9757b42..cf6ee2fd5 100644 --- a/test/list_visuals.cxx +++ b/test/list_visuals.cxx @@ -1,5 +1,5 @@ // -// "$Id: list_visuals.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $" +// "$Id: list_visuals.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $" // // Visual list utility for the Fast Light Tool Kit (FLTK). // @@ -28,7 +28,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #ifdef WIN32 @@ -235,5 +235,5 @@ int main(int argc, char **argv) { #endif // -// End of "$Id: list_visuals.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $". +// End of "$Id: list_visuals.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $". // diff --git a/test/mandelbrot.cxx b/test/mandelbrot.cxx index 65b99a3e6..aa7c06b31 100644 --- a/test/mandelbrot.cxx +++ b/test/mandelbrot.cxx @@ -1,5 +1,5 @@ // -// "$Id: mandelbrot.cxx,v 1.8.2.1 2000/04/25 22:16:57 mike Exp $" +// "$Id: mandelbrot.cxx,v 1.8.2.2 2000/06/05 21:21:22 mike Exp $" // // Mandelbrot set demo for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include "mandelbrot_ui.cxx" @@ -197,5 +197,5 @@ void Drawing_Area::resize(int X,int Y,int W,int H) { } // -// End of "$Id: mandelbrot.cxx,v 1.8.2.1 2000/04/25 22:16:57 mike Exp $". +// End of "$Id: mandelbrot.cxx,v 1.8.2.2 2000/06/05 21:21:22 mike Exp $". // diff --git a/test/mandelbrot.h b/test/mandelbrot.h index a0ac83ffa..8eb512b05 100644 --- a/test/mandelbrot.h +++ b/test/mandelbrot.h @@ -1,5 +1,5 @@ // -// "$Id: mandelbrot.h,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $" +// "$Id: mandelbrot.h,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $" // // Mandelbrot set header file for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -68,5 +68,5 @@ public: }; // -// End of "$Id: mandelbrot.h,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $". +// End of "$Id: mandelbrot.h,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $". // diff --git a/test/menubar.cxx b/test/menubar.cxx index 5114f9bb7..50cfea9d1 100644 --- a/test/menubar.cxx +++ b/test/menubar.cxx @@ -1,5 +1,5 @@ // -// "$Id: menubar.cxx,v 1.6.2.4 2000/04/25 22:16:57 mike Exp $" +// "$Id: menubar.cxx,v 1.6.2.5 2000/06/05 21:21:22 mike Exp $" // // Menubar test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -216,5 +216,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: menubar.cxx,v 1.6.2.4 2000/04/25 22:16:57 mike Exp $". +// End of "$Id: menubar.cxx,v 1.6.2.5 2000/06/05 21:21:22 mike Exp $". // diff --git a/test/message.cxx b/test/message.cxx index d7343170a..7f39e4b5f 100644 --- a/test/message.cxx +++ b/test/message.cxx @@ -1,5 +1,5 @@ // -// "$Id: message.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $" +// "$Id: message.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $" // // Message test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -54,5 +54,5 @@ int main(int, char **) { } // -// End of "$Id: message.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $". +// End of "$Id: message.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $". // diff --git a/test/minimum.cxx b/test/minimum.cxx index aa2c32962..7f1c8588d 100644 --- a/test/minimum.cxx +++ b/test/minimum.cxx @@ -1,5 +1,5 @@ // -// "$Id: minimum.cxx,v 1.4.2.1 2000/04/25 22:16:57 mike Exp $" +// "$Id: minimum.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" // // Minimal update test program for the Fast Light Tool Kit (FLTK). // @@ -37,7 +37,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -74,5 +74,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: minimum.cxx,v 1.4.2.1 2000/04/25 22:16:57 mike Exp $". +// End of "$Id: minimum.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". // diff --git a/test/navigation.cxx b/test/navigation.cxx index 33dd88b0e..c22bdab13 100644 --- a/test/navigation.cxx +++ b/test/navigation.cxx @@ -1,5 +1,5 @@ // -// "$Id: navigation.cxx,v 1.5.2.1 2000/04/25 22:16:58 mike Exp $" +// "$Id: navigation.cxx,v 1.5.2.2 2000/06/05 21:21:23 mike Exp $" // // Navigation test program for the Fast Light Tool Kit (FLTK). // @@ -23,7 +23,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdio.h> @@ -66,5 +66,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: navigation.cxx,v 1.5.2.1 2000/04/25 22:16:58 mike Exp $". +// End of "$Id: navigation.cxx,v 1.5.2.2 2000/06/05 21:21:23 mike Exp $". // diff --git a/test/output.cxx b/test/output.cxx index 81e5b8916..071cebdd5 100644 --- a/test/output.cxx +++ b/test/output.cxx @@ -1,5 +1,5 @@ // -// "$Id: output.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $" +// "$Id: output.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" // // Output test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -97,5 +97,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: output.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $". +// End of "$Id: output.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". // diff --git a/test/overlay.cxx b/test/overlay.cxx index 9726cb1af..570ac74e0 100644 --- a/test/overlay.cxx +++ b/test/overlay.cxx @@ -1,5 +1,5 @@ // -// "$Id: overlay.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $" +// "$Id: overlay.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" // // Overlay window test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -80,5 +80,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: overlay.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $". +// End of "$Id: overlay.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". // diff --git a/test/pack.cxx b/test/pack.cxx index da282724e..1702c4127 100644 --- a/test/pack.cxx +++ b/test/pack.cxx @@ -1,5 +1,5 @@ // -// "$Id: pack.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $" +// "$Id: pack.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" // // Fl_Pack test program for the Fast Light Tool Kit (FLTK). // @@ -24,7 +24,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -114,5 +114,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: pack.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $". +// End of "$Id: pack.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". // diff --git a/test/pixmap.cxx b/test/pixmap.cxx index b51bae4e1..233b1843c 100644 --- a/test/pixmap.cxx +++ b/test/pixmap.cxx @@ -1,5 +1,5 @@ // -// "$Id: pixmap.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $" +// "$Id: pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" // // Pixmap label test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -87,5 +87,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: pixmap.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $". +// End of "$Id: pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". // diff --git a/test/pixmap_browser.cxx b/test/pixmap_browser.cxx index 5bb72bea7..b1aec297c 100644 --- a/test/pixmap_browser.cxx +++ b/test/pixmap_browser.cxx @@ -1,5 +1,5 @@ // -// "$Id: pixmap_browser.cxx,v 1.5.2.2 2000/04/25 22:16:59 mike Exp $" +// "$Id: pixmap_browser.cxx,v 1.5.2.3 2000/06/05 21:21:23 mike Exp $" // // Another pixmap test program for the Fast Light Tool Kit (FLTK). // @@ -23,7 +23,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -165,5 +165,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: pixmap_browser.cxx,v 1.5.2.2 2000/04/25 22:16:59 mike Exp $". +// End of "$Id: pixmap_browser.cxx,v 1.5.2.3 2000/06/05 21:21:23 mike Exp $". // diff --git a/test/resizebox.cxx b/test/resizebox.cxx index 6bba56da6..885e77585 100644 --- a/test/resizebox.cxx +++ b/test/resizebox.cxx @@ -1,5 +1,5 @@ // -// "$Id: resizebox.cxx,v 1.4.2.1 2000/04/25 22:16:59 mike Exp $" +// "$Id: resizebox.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" // // Resize box test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #define W1 (big ? 60 : 40) @@ -97,5 +97,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: resizebox.cxx,v 1.4.2.1 2000/04/25 22:16:59 mike Exp $". +// End of "$Id: resizebox.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". // diff --git a/test/scroll.cxx b/test/scroll.cxx index 1574b2ad6..57c8e2794 100644 --- a/test/scroll.cxx +++ b/test/scroll.cxx @@ -1,5 +1,5 @@ // -// "$Id: scroll.cxx,v 1.4.2.1 2000/04/25 22:16:59 mike Exp $" +// "$Id: scroll.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $" // // Fl_Scroll test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -137,5 +137,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: scroll.cxx,v 1.4.2.1 2000/04/25 22:16:59 mike Exp $". +// End of "$Id: scroll.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $". // diff --git a/test/shape.cxx b/test/shape.cxx index 656492e6a..7c57a8992 100644 --- a/test/shape.cxx +++ b/test/shape.cxx @@ -1,5 +1,5 @@ // -// "$Id: shape.cxx,v 1.5.2.2 2000/04/25 22:16:59 mike Exp $" +// "$Id: shape.cxx,v 1.5.2.3 2000/06/05 21:21:24 mike Exp $" // // Tiny OpenGL demo program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <config.h> @@ -111,5 +111,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: shape.cxx,v 1.5.2.2 2000/04/25 22:16:59 mike Exp $". +// End of "$Id: shape.cxx,v 1.5.2.3 2000/06/05 21:21:24 mike Exp $". // diff --git a/test/shiny.cxx b/test/shiny.cxx index 177666c58..98927bae6 100644 --- a/test/shiny.cxx +++ b/test/shiny.cxx @@ -1,5 +1,5 @@ // -// "$Id: shiny.cxx,v 1.5.2.1 2000/04/25 22:16:59 mike Exp $" +// "$Id: shiny.cxx,v 1.5.2.2 2000/06/05 21:21:24 mike Exp $" // // OpenGL "shiny buttons" test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <config.h> @@ -303,5 +303,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: shiny.cxx,v 1.5.2.1 2000/04/25 22:16:59 mike Exp $". +// End of "$Id: shiny.cxx,v 1.5.2.2 2000/06/05 21:21:24 mike Exp $". // diff --git a/test/subwindow.cxx b/test/subwindow.cxx index a5cb6a519..a3d17be45 100644 --- a/test/subwindow.cxx +++ b/test/subwindow.cxx @@ -1,5 +1,5 @@ // -// "$Id: subwindow.cxx,v 1.5.2.3 2000/04/25 22:16:59 mike Exp $" +// "$Id: subwindow.cxx,v 1.5.2.4 2000/06/05 21:21:24 mike Exp $" // // Nested window test program for the Fast Light Tool Kit (FLTK). // @@ -25,7 +25,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -183,5 +183,5 @@ int main(int, char **) { } // -// End of "$Id: subwindow.cxx,v 1.5.2.3 2000/04/25 22:16:59 mike Exp $". +// End of "$Id: subwindow.cxx,v 1.5.2.4 2000/06/05 21:21:24 mike Exp $". // diff --git a/test/symbols.cxx b/test/symbols.cxx index e8cdcbea8..2d3edee86 100644 --- a/test/symbols.cxx +++ b/test/symbols.cxx @@ -1,5 +1,5 @@ // -// "$Id: symbols.cxx,v 1.4.2.1 2000/04/25 22:16:59 mike Exp $" +// "$Id: symbols.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $" // // Symbol test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <stdlib.h> @@ -85,5 +85,5 @@ bt("@DnArrow"); } // -// End of "$Id: symbols.cxx,v 1.4.2.1 2000/04/25 22:16:59 mike Exp $". +// End of "$Id: symbols.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $". // diff --git a/test/tile.cxx b/test/tile.cxx index 58d5a5b5e..12ffda941 100755 --- a/test/tile.cxx +++ b/test/tile.cxx @@ -1,5 +1,5 @@ // -// "$Id: tile.cxx,v 1.4.2.1 2000/04/25 22:17:00 mike Exp $" +// "$Id: tile.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $" // // Tile test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@easysw.com". +// Please report all bugs and problems to "fltk-bugs@fltk.org". // #include <FL/Fl.H> @@ -86,5 +86,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: tile.cxx,v 1.4.2.1 2000/04/25 22:17:00 mike Exp $". +// End of "$Id: tile.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $". // |
