From bb5ef3b1d08458d7d6c4a254148f1a4780ea0e82 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Sun, 14 Apr 2019 09:54:55 +0200 Subject: [PATCH] Doxygen: rewording for more clarity. --- FL/Fl_Image.H | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H index 7111cfc45..687aa6057 100644 --- a/FL/Fl_Image.H +++ b/FL/Fl_Image.H @@ -121,13 +121,13 @@ protected: public: /** - Returns the current image width in FLTK units. + Returns the current image drawing width in FLTK units. The values of w() and data_w() are identical unless scale() has been called after which they may differ. */ int w() const {return w_;} /** - Returns the current image height in FLTK units. + Returns the current image drawing height in FLTK units. The values of h() and data_h() are identical unless scale() has been called after which they may differ. */ @@ -141,7 +141,7 @@ public: */ int data_h() const {return data_h_;} /** - Returns the current image depth. + Returns the image depth. The return value will be 0 for bitmaps, 1 for pixmaps, and 1 to 4 for color images.

*/