diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-04-06 22:20:32 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-04-06 22:20:32 +0000 |
| commit | f120334da3fd538eb44498f3928f93e12af6aab1 (patch) | |
| tree | 3070cf4b3edfb610099869006ee61168e863687d /src/fl_read_image.cxx | |
| parent | 9fa4059f43194e5dd3331903be62148b21f16d65 (diff) | |
Fix Doxygen warnings.
There was one obvious warning in src/fl_read_image.cxx, but others
have to do with incomplete code and platform specific definitions.
I'm not entirely happy with these changes. Temporary changes have been
marked with 'FIXME' and should be removed later if possible.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11547 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_read_image.cxx')
| -rw-r--r-- | src/fl_read_image.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_read_image.cxx b/src/fl_read_image.cxx index c2071d1a8..e7d91b865 100644 --- a/src/fl_read_image.cxx +++ b/src/fl_read_image.cxx @@ -3,7 +3,7 @@ // // X11 image reading routines for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2014 by Bill Spitzak and others. +// Copyright 1998-2016 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 @@ -36,8 +36,8 @@ and the value that is placed in the alpha channel. If 0, no alpha channel is generated. */ -uchar *fl_read_image(uchar *p, int X, int Y, int w, int h, int alpha) { - return Fl::screen_driver()->read_image(p, X, Y, w, h, alpha); +uchar *fl_read_image(uchar *p, int X, int Y, int W, int H, int alpha) { + return Fl::screen_driver()->read_image(p, X, Y, W, H, alpha); } // |
