From f120334da3fd538eb44498f3928f93e12af6aab1 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 6 Apr 2016 22:20:32 +0000 Subject: 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 --- src/fl_read_image.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/fl_read_image.cxx') 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); } // -- cgit v1.2.3