diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2015-06-14 17:07:31 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2015-06-14 17:07:31 +0000 |
| commit | 77d272948cb98d0a0143e0dee9ec85126ab5981c (patch) | |
| tree | 23505f66c32c87f72f185af3c6d9eaa8bad5bf55 /src/Fl_GIF_Image.cxx | |
| parent | a097978096d66e3708a1b148dd9f3f7b43d1d2dd (diff) | |
Minor documentation fixes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10751 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_GIF_Image.cxx')
| -rw-r--r-- | src/Fl_GIF_Image.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Fl_GIF_Image.cxx b/src/Fl_GIF_Image.cxx index b541979b4..682d251df 100644 --- a/src/Fl_GIF_Image.cxx +++ b/src/Fl_GIF_Image.cxx @@ -3,7 +3,7 @@ // // Fl_GIF_Image routines. // -// Copyright 1997-2010 by Bill Spitzak and others. +// Copyright 1997-2015 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 @@ -70,14 +70,14 @@ typedef unsigned char uchar; #define NEXTBYTE (uchar)getc(GifFile) #define GETSHORT(var) var = NEXTBYTE; var += NEXTBYTE << 8 -/** +/** The constructor loads the named GIF image. - - The inherited destructor free all memory and server resources that are used - by the image. - - Use Fl_Image::fail() to check if Fl_BMP_Image failed to load. fail() returns - ERR_FILE_ACCESS if the file could not bo opened or read, ERR_FORMAT if the + + The destructor frees all memory and server resources that are used by + the image. + + Use Fl_Image::fail() to check if Fl_GIF_Image failed to load. fail() returns + ERR_FILE_ACCESS if the file could not be opened or read, ERR_FORMAT if the GIF format could not be decoded, and ERR_NO_IMAGE if the image could not be loaded for another reason. */ |
