From 1e2b0af44316c21a65a984fdbeb1f2ed1313ad03 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Mon, 13 Jan 2020 22:40:20 +0100 Subject: Combine image readers in class Fl_Image_Reader This new class is explicitly internal and undocumented. We can rename and/or redefine or extend it as we need. This work is based on Matt's recent update with separate internal classes BMPReader and GIFReader which have been replaced by Fl_Image_Reader. --- FL/Fl_BMP_Image.H | 10 +++++----- FL/Fl_GIF_Image.H | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'FL') diff --git a/FL/Fl_BMP_Image.H b/FL/Fl_BMP_Image.H index aca8d1e2b..0d60d7114 100644 --- a/FL/Fl_BMP_Image.H +++ b/FL/Fl_BMP_Image.H @@ -3,17 +3,17 @@ // // BMP image header file for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2010 by Bill Spitzak and others. +// Copyright 1998-2020 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this // file is missing or damaged, see the license at: // -// http://www.fltk.org/COPYING.php +// https://www.fltk.org/COPYING.php // // Please report all bugs and problems on the following page: // -// http://www.fltk.org/str.php +// https://www.fltk.org/str.php // /* \file @@ -25,7 +25,7 @@ /** The Fl_BMP_Image class supports loading, caching, - and drawing of Windows Bitmap (BMP) image files. + and drawing of Windows Bitmap (BMP) image files. */ class FL_EXPORT Fl_BMP_Image : public Fl_RGB_Image { @@ -36,7 +36,7 @@ class FL_EXPORT Fl_BMP_Image : public Fl_RGB_Image { protected: - void load_bmp_(class BMPReader &rdr); + void load_bmp_(class Fl_Image_Reader &rdr); }; diff --git a/FL/Fl_GIF_Image.H b/FL/Fl_GIF_Image.H index 0f316eca9..ff781acd8 100644 --- a/FL/Fl_GIF_Image.H +++ b/FL/Fl_GIF_Image.H @@ -3,7 +3,7 @@ // // GIF image header file for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2010 by Bill Spitzak and others. +// Copyright 1998-2020 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -37,7 +37,7 @@ public: protected: - void load_gif_(class GIFReader &rdr); + void load_gif_(class Fl_Image_Reader &rdr); }; -- cgit v1.2.3